process.hh (4793:315e1db6bd39) process.hh (4997:e7380529bd2d)
1/*
2 * Copyright (c) 2001-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;

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

132
133 protected:
134 /// Memory object for initialization (image loading)
135 TranslatingPort *initVirtMem;
136
137 public:
138 PageTable *pTable;
139
1/*
2 * Copyright (c) 2001-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;

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

132
133 protected:
134 /// Memory object for initialization (image loading)
135 TranslatingPort *initVirtMem;
136
137 public:
138 PageTable *pTable;
139
140 //This id is assigned by m5 and is used to keep process' tlb entries
141 //separated.
142 uint64_t M5_pid;
143
140 private:
141 // file descriptor remapping support
142 static const int MAX_FD = 256; // max legal fd value
143 int fd_map[MAX_FD+1];
144
145 public:
146 // static helper functions to generate file descriptors for constructor
147 static int openInputFile(const std::string &filename);

--- 139 unchanged lines hidden ---
144 private:
145 // file descriptor remapping support
146 static const int MAX_FD = 256; // max legal fd value
147 int fd_map[MAX_FD+1];
148
149 public:
150 // static helper functions to generate file descriptors for constructor
151 static int openInputFile(const std::string &filename);

--- 139 unchanged lines hidden ---