process.hh (5154:7e6431213487) process.hh (5183:b4decf133fe4)
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;

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

69 /// running on.
70 System *system;
71
72 // have we initialized a thread context from this process? If
73 // yes, subsequent contexts are assumed to be for dynamically
74 // created threads and are not initialized.
75 bool initialContextLoaded;
76
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;

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

69 /// running on.
70 System *system;
71
72 // have we initialized a thread context from this process? If
73 // yes, subsequent contexts are assumed to be for dynamically
74 // created threads and are not initialized.
75 bool initialContextLoaded;
76
77 bool checkpointRestored;
78
77 // thread contexts associated with this process
78 std::vector<ThreadContext *> threadContexts;
79
80 // remote gdb objects
81 std::vector<TheISA::RemoteGDB *> remoteGDB;
82 std::vector<GDBListener *> gdbListen;
83 bool breakpoint();
84

--- 191 unchanged lines hidden ---
79 // thread contexts associated with this process
80 std::vector<ThreadContext *> threadContexts;
81
82 // remote gdb objects
83 std::vector<TheISA::RemoteGDB *> remoteGDB;
84 std::vector<GDBListener *> gdbListen;
85 bool breakpoint();
86

--- 191 unchanged lines hidden ---