syscall_emul: [patch 9/22] remove unused global variable (num_processes)
authorBrandon Potter <brandon.potter@amd.com>
Wed, 9 Nov 2016 20:27:42 +0000 (14:27 -0600)
committerBrandon Potter <brandon.potter@amd.com>
Wed, 9 Nov 2016 20:27:42 +0000 (14:27 -0600)
src/arch/sparc/process.cc
src/arch/x86/process.cc
src/sim/process.cc

index 121f2f710b51f99e0f8217f43c6f3cbb670b4b8c..5c4f43b67a3383b111ce2362b95153e17cdb03a3 100644 (file)
@@ -415,8 +415,6 @@ SparcProcess::argsInit(int pageSize)
 
     // Align the "stack_min" to a page boundary.
     stack_min = roundDown(stack_min, pageSize);
-
-//    num_processes++;
 }
 
 void
index 245fbebf47b07fb9b68f00ea69a4a9c216f34d22..dfbd41e4eefaaf722e1c5b3e22e43fe38e67ec82 100644 (file)
@@ -1031,8 +1031,6 @@ X86Process::argsInit(int pageSize,
 
     //Align the "stack_min" to a page boundary.
     stack_min = roundDown(stack_min, pageSize);
-
-//    num_processes++;
 }
 
 void
index 50ebc9cec5fc7dba3ad57e940ec011f9dedb8a09..9510fd71db17094c93799b1a7ce32cce96d79b58 100644 (file)
@@ -90,9 +90,6 @@
 using namespace std;
 using namespace TheISA;
 
-// current number of allocated processes
-int num_processes = 0;
-
 static int
 openFile(const string& filename, int flags, mode_t mode)
 {