process.hh (8229:78bf55f23338) process.hh (9552:460cf901acba)
1/*
2 * Copyright (c) 2006 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;

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

48
49 void initState();
50
51 template<class IntType>
52 void argsInit(int pageSize);
53
54 public:
55 MipsISA::IntReg getSyscallArg(ThreadContext *tc, int &i);
1/*
2 * Copyright (c) 2006 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;

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

48
49 void initState();
50
51 template<class IntType>
52 void argsInit(int pageSize);
53
54 public:
55 MipsISA::IntReg getSyscallArg(ThreadContext *tc, int &i);
56 /// Explicitly import the otherwise hidden getSyscallArg
57 using LiveProcess::getSyscallArg;
56 void setSyscallArg(ThreadContext *tc, int i, MipsISA::IntReg val);
57 void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value);
58};
59
60
61#endif // __MIPS_PROCESS_HH__
58 void setSyscallArg(ThreadContext *tc, int i, MipsISA::IntReg val);
59 void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value);
60};
61
62
63#endif // __MIPS_PROCESS_HH__