Deleted Added
sdiff udiff text old ( 6744:408673e38566 ) new ( 8767:e575781f71b8 )
full compact
1/*
2 * Copyright (c) 2004-2009 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;

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

29 */
30
31#ifndef __LINUX_HH__
32#define __LINUX_HH__
33
34#include "base/types.hh"
35#include "config/full_system.hh"
36
37#include <string>
38
39#include "kern/operatingsystem.hh"
40
41class ThreadContext;
42class LiveProcess;
43
44///

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

169 int64_t ru_nivcsw; //!< involuntary "
170 };
171
172 static int openSpecialFile(std::string path, LiveProcess *process, ThreadContext *tc);
173 static std::string procMeminfo(LiveProcess *process, ThreadContext *tc);
174
175}; // class Linux
176
177#endif // __LINUX_HH__