process.hh (8229:78bf55f23338) process.hh (11851:824055fe6b30)
1/*
2 * Copyright (c) 2004 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 23 unchanged lines hidden (view full) ---

32#ifndef __MIPS_LINUX_PROCESS_HH__
33#define __MIPS_LINUX_PROCESS_HH__
34
35#include "arch/mips/linux/linux.hh"
36#include "arch/mips/process.hh"
37#include "sim/eventq.hh"
38
39/// A process with emulated Mips/Linux syscalls.
1/*
2 * Copyright (c) 2004 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 23 unchanged lines hidden (view full) ---

32#ifndef __MIPS_LINUX_PROCESS_HH__
33#define __MIPS_LINUX_PROCESS_HH__
34
35#include "arch/mips/linux/linux.hh"
36#include "arch/mips/process.hh"
37#include "sim/eventq.hh"
38
39/// A process with emulated Mips/Linux syscalls.
40class MipsLinuxProcess : public MipsLiveProcess
40class MipsLinuxProcess : public MipsProcess
41{
42 public:
43 /// Constructor.
41{
42 public:
43 /// Constructor.
44 MipsLinuxProcess(LiveProcessParams * params, ObjectFile *objFile);
44 MipsLinuxProcess(ProcessParams * params, ObjectFile *objFile);
45
46 virtual SyscallDesc* getDesc(int callnum);
47
48 /// The target system's hostname.
49 static const char *hostname;
50
51 /// ID of the thread group leader for the process
52 uint64_t __tgid;
53
54 /// Array of syscall descriptors, indexed by call number.
55 static SyscallDesc syscallDescs[];
56 const int Num_Syscall_Descs;
57};
58
59#endif // __MIPS_LINUX_PROCESS_HH__
45
46 virtual SyscallDesc* getDesc(int callnum);
47
48 /// The target system's hostname.
49 static const char *hostname;
50
51 /// ID of the thread group leader for the process
52 uint64_t __tgid;
53
54 /// Array of syscall descriptors, indexed by call number.
55 static SyscallDesc syscallDescs[];
56 const int Num_Syscall_Descs;
57};
58
59#endif // __MIPS_LINUX_PROCESS_HH__