Remove "using namespace std" from global declarations.
authorKevin Lim <ktlim@umich.edu>
Wed, 29 Mar 2006 21:05:26 +0000 (16:05 -0500)
committerKevin Lim <ktlim@umich.edu>
Wed, 29 Mar 2006 21:05:26 +0000 (16:05 -0500)
--HG--
extra : convert_revision : c580bc6bd308fd502fb5a14ea84b5214e1d2718e

arch/alpha/linux/system.hh
base/timebuf.hh
kern/tru64/tru64.hh

index 035e2a42799a967ec356ac6335fa443895788a5a..0c1fb037e5005da9f5fa8afb815e02de7b3d40bd 100644 (file)
@@ -39,7 +39,6 @@ class IdleStartEvent;
 
 using namespace AlphaISA;
 using namespace Linux;
-using namespace std;
 
 /**
  * This class contains linux specific system code (Loading, Events, Binning).
index 435803fae01cf0017c880023d5892ccb058cdd09..f6b5b2781cbf4d710318d09443c4e0986b75f0cc 100644 (file)
@@ -31,8 +31,6 @@
 
 #include <vector>
 
-using namespace std;
-
 template <class T>
 class TimeBuffer
 {
@@ -42,7 +40,7 @@ class TimeBuffer
     int size;
 
     char *data;
-    vector<char *> index;
+    std::vector<char *> index;
     int base;
 
     void valid(int idx)
index 3f5ef3dea75dde9709efa96a68788db37f722e03..b4f45e650579f8bff7e30ef70902a3fecefbfd0a 100644 (file)
@@ -55,8 +55,6 @@ class Tru64 {};
 #include "sim/root.hh"
 #include "sim/syscall_emul.hh"
 
-using namespace std;
-
 typedef struct stat global_stat;
 typedef struct statfs global_statfs;
 typedef struct dirent global_dirent;
@@ -751,6 +749,7 @@ class Tru64 {
     tableFunc(SyscallDesc *desc, int callnum, Process *process,
               ExecContext *xc)
     {
+        using namespace std;
         using namespace TheISA;
 
         int id = xc->getSyscallArg(0);         // table ID
@@ -824,6 +823,7 @@ class Tru64 {
     nxm_task_initFunc(SyscallDesc *desc, int callnum, Process *process,
                       ExecContext *xc)
     {
+        using namespace std;
         using namespace TheISA;
 
         TypedBufferArg<Tru64::nxm_task_attr> attrp(xc->getSyscallArg(0));
@@ -957,6 +957,7 @@ class Tru64 {
     nxm_thread_createFunc(SyscallDesc *desc, int callnum, Process *process,
                           ExecContext *xc)
     {
+        using namespace std;
         using namespace TheISA;
 
         TypedBufferArg<Tru64::nxm_thread_attr> attrp(xc->getSyscallArg(0));
@@ -1081,6 +1082,8 @@ class Tru64 {
     nxm_thread_blockFunc(SyscallDesc *desc, int callnum, Process *process,
                          ExecContext *xc)
     {
+        using namespace std;
+
         uint64_t tid = xc->getSyscallArg(0);
         uint64_t secs = xc->getSyscallArg(1);
         uint64_t flags = xc->getSyscallArg(2);
@@ -1098,6 +1101,8 @@ class Tru64 {
     nxm_blockFunc(SyscallDesc *desc, int callnum, Process *process,
                   ExecContext *xc)
     {
+        using namespace std;
+
         Addr uaddr = xc->getSyscallArg(0);
         uint64_t val = xc->getSyscallArg(1);
         uint64_t secs = xc->getSyscallArg(2);
@@ -1119,6 +1124,8 @@ class Tru64 {
     nxm_unblockFunc(SyscallDesc *desc, int callnum, Process *process,
                     ExecContext *xc)
     {
+        using namespace std;
+
         Addr uaddr = xc->getSyscallArg(0);
 
         cout << xc->getCpuPtr()->name() << ": nxm_unblock "
@@ -1149,6 +1156,8 @@ class Tru64 {
     activate_waiting_context(Addr uaddr, Process *process,
                              bool activate_all = false)
     {
+        using namespace std;
+
         int num_activated = 0;
 
         list<Process::WaitRec>::iterator i = process->waitList.begin();