diff options
Diffstat (limited to 'src/kern/operatingsystem.hh')
-rw-r--r-- | src/kern/operatingsystem.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kern/operatingsystem.hh b/src/kern/operatingsystem.hh index fd5899cf8..f6f035f43 100644 --- a/src/kern/operatingsystem.hh +++ b/src/kern/operatingsystem.hh @@ -38,9 +38,9 @@ class LiveProcess; class ThreadContext; -/// This struct is used to build an target-OS-dependent table that -/// maps the target's open() flags to the host open() flags. -struct OpenFlagTransTable { +/// This struct is used to build target-OS-dependent tables that +/// map the target's flags to the host's flags. +struct SyscallFlagTransTable { int tgtFlag; //!< Target system flag value. int hostFlag; //!< Corresponding host system flag value. }; |