linux.hh (11381:516213d2f0cf) linux.hh (11382:654272b82e94)
1/*
2 * Copyright (c) 2003-2005 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;

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

36/* AlphaLinux class contains static constants/definitions/misc.
37 * structures which are specific to the Linux OS AND the Alpha
38 * architecture
39 */
40class AlphaLinux : public Linux
41{
42 public:
43
1/*
2 * Copyright (c) 2003-2005 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;

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

36/* AlphaLinux class contains static constants/definitions/misc.
37 * structures which are specific to the Linux OS AND the Alpha
38 * architecture
39 */
40class AlphaLinux : public Linux
41{
42 public:
43
44 static const int TGT_SIGHUP = 0x000001;
45 static const int TGT_SIGINT = 0x000002;
46 static const int TGT_SIGQUIT = 0x000003;
47 static const int TGT_SIGILL = 0x000004;
48 static const int TGT_SIGTRAP = 0x000005;
49 static const int TGT_SIGABRT = 0x000006;
50 static const int TGT_SIGEMT = 0x000007;
51 static const int TGT_SIGFPE = 0x000008;
52 static const int TGT_SIGKILL = 0x000009;
53 static const int TGT_SIGBUS = 0x00000a;
54 static const int TGT_SIGSEGV = 0x00000b;
55 static const int TGT_SIGSYS = 0x00000c;
56 static const int TGT_SIGPIPE = 0x00000d;
57 static const int TGT_SIGALRM = 0x00000e;
58 static const int TGT_SIGTERM = 0x00000f;
59 static const int TGT_SIGURG = 0x000010;
60 static const int TGT_SIGSTOP = 0x000011;
61 static const int TGT_SIGTSTP = 0x000012;
62 static const int TGT_SIGCONT = 0x000013;
63 static const int TGT_SIGCHLD = 0x000014;
64 static const int TGT_SIGTTIN = 0x000015;
65 static const int TGT_SIGTTOU = 0x000016;
66 static const int TGT_SIGIO = 0x000017;
67 static const int TGT_SIGXCPU = 0x000018;
68 static const int TGT_SIGXFSZ = 0x000019;
69 static const int TGT_SIGVTALRM = 0x00001a;
70 static const int TGT_SIGPROF = 0x00001b;
71 static const int TGT_SIGWINCH = 0x00001c;
72 static const int TGT_SIGINFO = 0x00001d;
73 static const int TGT_SIGUSR1 = 0x00001e;
74 static const int TGT_SIGUSR2 = 0x00001f;
75
44 /// This table maps the target open() flags to the corresponding
45 /// host open() flags.
46 static SyscallFlagTransTable openFlagTable[];
47
48 /// Number of entries in openFlagTable[].
49 static const int NUM_OPEN_FLAGS;
50
51 //@{
52 /// open(2) flag values.
76 /// This table maps the target open() flags to the corresponding
77 /// host open() flags.
78 static SyscallFlagTransTable openFlagTable[];
79
80 /// Number of entries in openFlagTable[].
81 static const int NUM_OPEN_FLAGS;
82
83 //@{
84 /// open(2) flag values.
53 static const int TGT_O_RDONLY = 00000000; //!< O_RDONLY
54 static const int TGT_O_WRONLY = 00000001; //!< O_WRONLY
55 static const int TGT_O_RDWR = 00000002; //!< O_RDWR
56 static const int TGT_O_NONBLOCK = 00000004; //!< O_NONBLOCK
57 static const int TGT_O_APPEND = 00000010; //!< O_APPEND
58 static const int TGT_O_CREAT = 00001000; //!< O_CREAT
59 static const int TGT_O_TRUNC = 00002000; //!< O_TRUNC
60 static const int TGT_O_EXCL = 00004000; //!< O_EXCL
61 static const int TGT_O_NOCTTY = 00010000; //!< O_NOCTTY
62 static const int TGT_O_SYNC = 00040000; //!< O_SYNC
63 static const int TGT_O_DRD = 00100000; //!< O_DRD
64 static const int TGT_O_DIRECTIO = 00200000; //!< O_DIRECTIO
65 static const int TGT_O_CACHE = 00400000; //!< O_CACHE
66 static const int TGT_O_DSYNC = 02000000; //!< O_DSYNC
67 static const int TGT_O_RSYNC = 04000000; //!< O_RSYNC
85 static const int TGT_O_RDONLY = 000000000; //!< O_RDONLY
86 static const int TGT_O_WRONLY = 000000001; //!< O_WRONLY
87 static const int TGT_O_RDWR = 000000002; //!< O_RDWR
88 static const int TGT_O_CREAT = 000001000; //!< O_CREAT
89 static const int TGT_O_EXCL = 000004000; //!< O_EXCL
90 static const int TGT_O_NOCTTY = 000010000; //!< O_NOCTTY
91 static const int TGT_O_TRUNC = 000002000; //!< O_TRUNC
92 static const int TGT_O_APPEND = 000000010; //!< O_APPEND
93 static const int TGT_O_NONBLOCK = 000000004; //!< O_NONBLOCK
94 static const int TGT_O_DSYNC = 000040000; //!< O_DSYNC
95 static const int TGT_FASYNC = 000020000; //!< FASYNC
96 static const int TGT_O_DIRECT = 002000000; //!< O_DIRECT
97 static const int TGT_O_LARGEFILE = 000400000; //!< O_LARGEFILE
98 static const int TGT_O_DIRECTORY = 000100000; //!< O_DIRECTORY
99 static const int TGT_O_NOFOLLOW = 000200000; //!< O_NOFOLLOW
100 static const int TGT_O_NOATIME = 004000000; //!< O_NOATIME
101 static const int TGT_O_CLOEXEC = 010000000; //!< O_CLOEXEC
102 static const int TGT_O_SYNC = 020040000; //!< O_SYNC
103 static const int TGT_O_PATH = 040000000; //!< O_PATH
68 //@}
69
70 /// For mmap().
71 static const unsigned TGT_MAP_ANONYMOUS = 0x10;
72 static const unsigned TGT_MAP_FIXED = 0x100;
73
74 //@{
75 /// For getsysinfo().

--- 76 unchanged lines hidden ---
104 //@}
105
106 /// For mmap().
107 static const unsigned TGT_MAP_ANONYMOUS = 0x10;
108 static const unsigned TGT_MAP_FIXED = 0x100;
109
110 //@{
111 /// For getsysinfo().

--- 76 unchanged lines hidden ---