diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-01 22:39:27 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2003-12-01 22:39:27 -0800 |
commit | 9984b2bd6ccee7e24843236315c19f0f0c83f685 (patch) | |
tree | d7891068695af2a23b313efc61df092d44f21774 /sim/syscall_emul.cc | |
parent | 745f0044cd65d476b3b190377989eb0af3738df5 (diff) | |
download | gem5-9984b2bd6ccee7e24843236315c19f0f0c83f685.tar.xz |
Formatting & doxygen docs for new syscall emulation code.
arch/alpha/alpha_linux_process.cc:
arch/alpha/alpha_linux_process.hh:
arch/alpha/alpha_tru64_process.cc:
arch/alpha/alpha_tru64_process.hh:
sim/syscall_emul.cc:
sim/syscall_emul.hh:
Formatting & doxygen.
--HG--
extra : convert_revision : 4f07dd37e254120800dd0d5c0eb47acc9c00cb3f
Diffstat (limited to 'sim/syscall_emul.cc')
-rw-r--r-- | sim/syscall_emul.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sim/syscall_emul.cc b/sim/syscall_emul.cc index 0e4e78612..9955d4421 100644 --- a/sim/syscall_emul.cc +++ b/sim/syscall_emul.cc @@ -57,9 +57,6 @@ SyscallDesc::doSyscall(int callnum, Process *process, ExecContext *xc) } -// -// Handler for unimplemented syscalls that we haven't thought about. -// int unimplementedFunc(SyscallDesc *desc, int callnum, Process *process, ExecContext *xc) @@ -73,12 +70,6 @@ unimplementedFunc(SyscallDesc *desc, int callnum, Process *process, } -// -// Handler for unimplemented syscalls that we never intend to -// implement (signal handling, etc.) and should not affect the correct -// behavior of the program. Print a warning only if the appropriate -// trace flag is enabled. Return success to the target program. -// int ignoreFunc(SyscallDesc *desc, int callnum, Process *process, ExecContext *xc) |