process.hh (3669:3607aaed36b6) process.hh (5128:69fb816fa927)
1/*
2 * Copyright (c) 2003-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;

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

33
34#include "arch/sparc/solaris/solaris.hh"
35#include "arch/sparc/process.hh"
36#include "sim/process.hh"
37
38namespace SparcISA {
39
40/// A process with emulated SPARC/Solaris syscalls.
1/*
2 * Copyright (c) 2003-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;

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

33
34#include "arch/sparc/solaris/solaris.hh"
35#include "arch/sparc/process.hh"
36#include "sim/process.hh"
37
38namespace SparcISA {
39
40/// A process with emulated SPARC/Solaris syscalls.
41class SparcSolarisProcess : public SparcLiveProcess
41class SparcSolarisProcess : public Sparc64LiveProcess
42{
43 public:
44 /// Constructor.
45 SparcSolarisProcess(const std::string &name,
46 ObjectFile *objFile,
47 System * system,
48 int stdin_fd, int stdout_fd, int stderr_fd,
49 std::vector<std::string> &argv,

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

61 /// Array of syscall descriptors, indexed by call number.
62 static SyscallDesc syscallDescs[];
63
64 const int Num_Syscall_Descs;
65};
66
67
68} // namespace SparcISA
42{
43 public:
44 /// Constructor.
45 SparcSolarisProcess(const std::string &name,
46 ObjectFile *objFile,
47 System * system,
48 int stdin_fd, int stdout_fd, int stderr_fd,
49 std::vector<std::string> &argv,

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

61 /// Array of syscall descriptors, indexed by call number.
62 static SyscallDesc syscallDescs[];
63
64 const int Num_Syscall_Descs;
65};
66
67
68} // namespace SparcISA
69#endif // __ALPHA_SOLARIS_PROCESS_HH__
69#endif // __SPARC_SOLARIS_PROCESS_HH__