process.hh (6650:f23a18fec0ef) process.hh (8229:78bf55f23338)
1/*
2 * Copyright (c) 2004 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;

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

27 *
28 * Authors: Gabe Black
29 * Korey Sewell
30 */
31
32#ifndef __MIPS_LINUX_PROCESS_HH__
33#define __MIPS_LINUX_PROCESS_HH__
34
1/*
2 * Copyright (c) 2004 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;

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

27 *
28 * Authors: Gabe Black
29 * Korey Sewell
30 */
31
32#ifndef __MIPS_LINUX_PROCESS_HH__
33#define __MIPS_LINUX_PROCESS_HH__
34
35#include "arch/mips/process.hh"
36#include "arch/mips/linux/linux.hh"
35#include "arch/mips/linux/linux.hh"
36#include "arch/mips/process.hh"
37#include "sim/eventq.hh"
38
39/// A process with emulated Mips/Linux syscalls.
40class MipsLinuxProcess : public MipsLiveProcess
41{
42 public:
43 /// Constructor.
44 MipsLinuxProcess(LiveProcessParams * params, ObjectFile *objFile);

--- 15 unchanged lines hidden ---
37#include "sim/eventq.hh"
38
39/// A process with emulated Mips/Linux syscalls.
40class MipsLinuxProcess : public MipsLiveProcess
41{
42 public:
43 /// Constructor.
44 MipsLinuxProcess(LiveProcessParams * params, ObjectFile *objFile);

--- 15 unchanged lines hidden ---