process.hh (5958:2d9737bf3c2f) process.hh (6075:1e1a874f9b17)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

64
65namespace X86ISA {
66
67class X86_64LinuxProcess : public X86_64LiveProcess
68{
69 protected:
70 /// Array of syscall descriptors, indexed by call number.
71 static SyscallDesc syscallDescs[];
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

64
65namespace X86ISA {
66
67class X86_64LinuxProcess : public X86_64LiveProcess
68{
69 protected:
70 /// Array of syscall descriptors, indexed by call number.
71 static SyscallDesc syscallDescs[];
72 static const int numSyscalls;
72
73 public:
74 /// Constructor.
75 X86_64LinuxProcess(LiveProcessParams * params, ObjectFile *objFile);
76};
77
78class I386LinuxProcess : public I386LiveProcess
79{
80 protected:
81 /// Array of syscall descriptors, indexed by call number.
82 static SyscallDesc syscallDescs[];
73
74 public:
75 /// Constructor.
76 X86_64LinuxProcess(LiveProcessParams * params, ObjectFile *objFile);
77};
78
79class I386LinuxProcess : public I386LiveProcess
80{
81 protected:
82 /// Array of syscall descriptors, indexed by call number.
83 static SyscallDesc syscallDescs[];
84 static const int numSyscalls;
83
84 public:
85 /// Constructor.
86 I386LinuxProcess(LiveProcessParams * params, ObjectFile *objFile);
87};
88
89} // namespace X86ISA
90#endif // __X86_LINUX_PROCESS_HH__
85
86 public:
87 /// Constructor.
88 I386LinuxProcess(LiveProcessParams * params, ObjectFile *objFile);
89};
90
91} // namespace X86ISA
92#endif // __X86_LINUX_PROCESS_HH__