diff options
Diffstat (limited to 'src/arch/arm/linux/process.hh')
-rw-r--r-- | src/arch/arm/linux/process.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/arm/linux/process.hh b/src/arch/arm/linux/process.hh index 205a40418..835b94161 100644 --- a/src/arch/arm/linux/process.hh +++ b/src/arch/arm/linux/process.hh @@ -42,9 +42,14 @@ class ArmLinuxProcess : public ArmLiveProcess virtual SyscallDesc* getDesc(int callnum); + void startup(); + /// The target system's hostname. static const char *hostname; + /// A page to hold "kernel" provided functions. The name might be wrong. + static const Addr commPage; + /// Array of syscall descriptors, indexed by call number. static SyscallDesc syscallDescs[]; |