Deleted Added
sdiff udiff text old ( 5543:3af77710f397 ) new ( 5795:72ce7502dc71 )
full compact
1/*
2 * Copyright (c) 2004-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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the

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

34
35#if FULL_SYSTEM
36
37class Linux {};
38
39#else //!FULL_SYSTEM
40
41#include <inttypes.h>
42
43#include "kern/operatingsystem.hh"
44
45///
46/// This class encapsulates the types, structures, constants,
47/// functions, and syscall-number mappings specific to the Alpha Linux
48/// syscall interface.
49///
50class Linux : public OperatingSystem
51{
52

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

153 int64_t ru_oublock; //!< block output operations
154 int64_t ru_msgsnd; //!< messages sent
155 int64_t ru_msgrcv; //!< messages received
156 int64_t ru_nsignals; //!< signals received
157 int64_t ru_nvcsw; //!< voluntary context switches
158 int64_t ru_nivcsw; //!< involuntary "
159 };
160
161}; // class Linux
162
163
164#endif // FULL_SYSTEM
165
166#endif // __LINUX_HH__