From 159cee171976019badb17336eff5b69df3c89528 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 12 Mar 2006 16:27:52 -0500 Subject: Clean up arch/*/process.hh includes and std namespace issues. arch/alpha/process.cc: arch/mips/process.cc: arch/sparc/process.cc: You really do need the headers in the .cc file. arch/alpha/process.hh: Don't include unnecessary headers in another header. Replace with forward class declarations. arch/mips/process.hh: arch/sparc/process.hh: Don't include unnecessary headers in another header. Replace with forward class declarations. Also fix std namespace... no "using" in header files! --HG-- extra : convert_revision : f2cd953d0f4a212bb8148cc54c329aa3c18deb89 --- arch/sparc/process.hh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'arch/sparc/process.hh') diff --git a/arch/sparc/process.hh b/arch/sparc/process.hh index 48041a316..e0bba3497 100644 --- a/arch/sparc/process.hh +++ b/arch/sparc/process.hh @@ -29,16 +29,20 @@ #ifndef __SPARC_PROCESS_HH__ #define __SPARC_PROCESS_HH__ -#include "arch/sparc/linux/process.hh" -#include "base/loader/object_file.hh" +#include +#include + +class LiveProcess; +class ObjectFile; +class System; namespace SparcISA { LiveProcess * -createProcess(const string &nm, ObjectFile * objFile, - int stdin_fd, int stdout_fd, int stderr_fd, - vector &argv, vector &envp); +createProcess(const std::string &nm, ObjectFile * objFile, + int stdin_fd, int stdout_fd, int stderr_fd, + std::vector &argv, std::vector &envp); } // namespace SparcISA -- cgit v1.2.3