linux.hh (5543:3af77710f397) linux.hh (5569:baeee670d4ce)
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;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
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;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#ifndef __ALPHA_ALPHA_LINUX_HH
32#define __ALPHA_ALPHA_LINUX_HH
31#ifndef __ALPHA_ALPHA_LINUX_LINUX_HH__
32#define __ALPHA_ALPHA_LINUX_LINUX_HH__
33
34#include "kern/linux/linux.hh"
35
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

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

67 static const int TGT_O_RSYNC = 04000000; //!< O_RSYNC
68 //@}
69
70 /// For mmap().
71 static const unsigned TGT_MAP_ANONYMOUS = 0x10;
72
73 //@{
74 /// For getsysinfo().
33
34#include "kern/linux/linux.hh"
35
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

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

67 static const int TGT_O_RSYNC = 04000000; //!< O_RSYNC
68 //@}
69
70 /// For mmap().
71 static const unsigned TGT_MAP_ANONYMOUS = 0x10;
72
73 //@{
74 /// For getsysinfo().
75 static const unsigned GSI_PLATFORM_NAME = 103; //!< platform name as string
76 static const unsigned GSI_CPU_INFO = 59; //!< CPU information
77 static const unsigned GSI_PROC_TYPE = 60; //!< get proc_type
78 static const unsigned GSI_MAX_CPU = 30; //!< max # cpu's on this machine
79 static const unsigned GSI_CPUS_IN_BOX = 55; //!< number of CPUs in system
80 static const unsigned GSI_PHYSMEM = 19; //!< Physical memory in KB
81 static const unsigned GSI_CLK_TCK = 42; //!< clock freq in Hz
75 static const unsigned GSI_PLATFORM_NAME = 103; //!< platform name as string
76 static const unsigned GSI_CPU_INFO = 59; //!< CPU information
77 static const unsigned GSI_PROC_TYPE = 60; //!< get proc_type
78 static const unsigned GSI_MAX_CPU = 30; //!< max # CPUs on machine
79 static const unsigned GSI_CPUS_IN_BOX = 55; //!< number of CPUs in system
80 static const unsigned GSI_PHYSMEM = 19; //!< Physical memory in KB
81 static const unsigned GSI_CLK_TCK = 42; //!< clock freq in Hz
82 static const unsigned GSI_IEEE_FP_CONTROL = 45;
83 //@}
84
85 //@{
86 /// For getrusage().
87 static const int TGT_RUSAGE_SELF = 0;
88 static const int TGT_RUSAGE_CHILDREN = -1;
89 static const int TGT_RUSAGE_BOTH = -2;

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

122 TGT_RLIMIT_AS = 7,
123 TGT_RLIMIT_VMEM = 7,
124 TGT_RLIMIT_NPROC = 8,
125 TGT_RLIMIT_MEMLOCK = 9,
126 TGT_RLIMIT_LOCKS = 10
127 };
128};
129
82 static const unsigned GSI_IEEE_FP_CONTROL = 45;
83 //@}
84
85 //@{
86 /// For getrusage().
87 static const int TGT_RUSAGE_SELF = 0;
88 static const int TGT_RUSAGE_CHILDREN = -1;
89 static const int TGT_RUSAGE_BOTH = -2;

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

122 TGT_RLIMIT_AS = 7,
123 TGT_RLIMIT_VMEM = 7,
124 TGT_RLIMIT_NPROC = 8,
125 TGT_RLIMIT_MEMLOCK = 9,
126 TGT_RLIMIT_LOCKS = 10
127 };
128};
129
130#endif
130#endif // __ALPHA_ALPHA_LINUX_LINUX_HH__