Deleted Added
sdiff udiff text old ( 11705:d40bdd3c5778 ) new ( 11723:0596db108c53 )
full compact
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
3 * Copyright (c) 2012 ARM Limited
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

77#include "arch/mips/linux/process.hh"
78#elif THE_ISA == ARM_ISA
79#include "arch/arm/linux/process.hh"
80#include "arch/arm/freebsd/process.hh"
81#elif THE_ISA == X86_ISA
82#include "arch/x86/linux/process.hh"
83#elif THE_ISA == POWER_ISA
84#include "arch/power/linux/process.hh"
85#else
86#error "THE_ISA not set"
87#endif
88
89
90using namespace std;
91using namespace TheISA;
92

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

699 // fall through
700 case ObjectFile::Linux:
701 process = new PowerLinuxProcess(params, objFile);
702 break;
703
704 default:
705 fatal("Unknown/unsupported operating system.");
706 }
707#else
708#error "THE_ISA not set"
709#endif
710
711 if (process == NULL)
712 fatal("Unknown error creating process object.");
713 return process;
714}
715
716LiveProcess *
717LiveProcessParams::create()
718{
719 return LiveProcess::create(this);
720}