diff options
author | Brandon Potter <Brandon.Potter@amd.com> | 2017-03-15 11:09:36 -0500 |
---|---|---|
committer | Brandon Potter <Brandon.Potter@amd.com> | 2017-03-17 18:39:58 +0000 |
commit | 1991ff3bb26f89d869a098db33d87c15bcb9678e (patch) | |
tree | 392a50fcecc97b9e49a144618dc53d2eeac27cdc /src/sim/process.cc | |
parent | 48333e7e3f5282bd2b5505b400ad5b06d6785371 (diff) | |
download | gem5-1991ff3bb26f89d869a098db33d87c15bcb9678e.tar.xz |
syscall-emul: change NULL to nullptr in Process files
Change-Id: I9ff21092876593237f919e9f7fb7283bd865ba2e
Reviewed-on: https://gem5-review.googlesource.com/2421
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Brandon Potter <Brandon.Potter@amd.com>
Diffstat (limited to 'src/sim/process.cc')
-rw-r--r-- | src/sim/process.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sim/process.cc b/src/sim/process.cc index 406b38679..89a82a6a1 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -151,7 +151,7 @@ Process::Process(ProcessParams * params, ObjectFile * obj_file) !objFile->loadLocalSymbols(debugSymbolTable) || !objFile->loadWeakSymbols(debugSymbolTable)) { delete debugSymbolTable; - debugSymbolTable = NULL; + debugSymbolTable = nullptr; } } } @@ -259,7 +259,7 @@ Process::findFreeContext() if (ThreadContext::Halted == it->status()) return it; } - return NULL; + return nullptr; } void @@ -406,7 +406,7 @@ Process::syscall(int64_t callnum, ThreadContext *tc, Fault *fault) numSyscalls++; SyscallDesc *desc = getDesc(callnum); - if (desc == NULL) + if (desc == nullptr) fatal("Syscall %d out of range", callnum); desc->doSyscall(callnum, this, tc, fault); @@ -426,7 +426,7 @@ Process::findDriver(std::string filename) return d; } - return NULL; + return nullptr; } void @@ -480,7 +480,7 @@ Process::getStartPC() Process * ProcessParams::create() { - Process *process = NULL; + Process *process = nullptr; // If not specified, set the executable parameter equal to the // simulated system's zeroth command line parameter @@ -489,7 +489,7 @@ ProcessParams::create() } ObjectFile *obj_file = createObjectFile(executable); - if (obj_file == NULL) { + if (obj_file == nullptr) { fatal("Can't load object file %s", executable); } @@ -628,7 +628,7 @@ ProcessParams::create() #error "THE_ISA not set" #endif - if (process == NULL) + if (process == nullptr) fatal("Unknown error creating process object."); return process; } |