process.hh (6019:76890d8b28f5) process.hh (6020:0647c8b31a99)
1/*
2 * Copyright (c) 2007-2008 The Florida State University
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 copyStringArray32(std::vector<std::string> &strings,
50 Addr array_ptr, Addr data_ptr,
51 TranslatingPort* memPort);
52
53 public:
54 void argsInit(int intSize, int pageSize);
55
1/*
2 * Copyright (c) 2007-2008 The Florida State University
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 copyStringArray32(std::vector<std::string> &strings,
50 Addr array_ptr, Addr data_ptr,
51 TranslatingPort* memPort);
52
53 public:
54 void argsInit(int intSize, int pageSize);
55
56 ArmISA::IntReg getSyscallArg(ThreadContext *tc, int i);
57 void setSyscallArg(ThreadContext *tc, int i, ArmISA::IntReg val);
58 void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value);
56};
57
58#endif // __ARM_PROCESS_HH__
59
59};
60
61#endif // __ARM_PROCESS_HH__
62