Deleted Added
sdiff udiff text old ( 4111:65fffcb4fae9 ) new ( 4117:2807cee7b892 )
full compact
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;

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

36// The purpose of this code is to fake the loader & syscall mechanism
37// when there's no OS: thus there's no reason to use it in FULL_SYSTEM
38// mode when we do have an OS.
39//
40#include "config/full_system.hh"
41
42#if !FULL_SYSTEM
43
44#include <vector>
45
46#include "base/statistics.hh"
47#include "sim/host.hh"
48#include "sim/sim_object.hh"
49
50class ThreadContext;
51class SyscallDesc;
52class PageTable;
53class TranslatingPort;
54class System;
55class GDBListener;
56namespace TheISA
57{
58 class RemoteGDB;
59}
60
61void
62copyStringArray(std::vector<std::string> &strings, Addr array_ptr,
63 Addr data_ptr, TranslatingPort* memPort, int ptr_size = sizeof(Addr));
64
65class Process : public SimObject
66{
67 public:
68
69 /// Pointer to object representing the system this process is
70 /// running on.
71 System *system;
72

--- 187 unchanged lines hidden ---