Changeset 3668 in vbox for trunk/src/VBox/Main/linux
- Timestamp:
- Jul 17, 2007 8:56:37 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22944
- Location:
- trunk/src/VBox/Main/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/server.cpp
r3652 r3668 56 56 57 57 // for the backtrace signal handler 58 #if defined(DEBUG) && defined( __LINUX__)58 #if defined(DEBUG) && defined(RT_OS_LINUX) 59 59 # define USE_BACKTRACE 60 60 #endif … … 66 66 # endif 67 67 # include <ucontext.h> 68 # ifdef __AMD64__68 # ifdef RT_ARCH_AMD64 69 69 # define REG_PC REG_RIP 70 70 # else … … 992 992 static RTFILE pidFile = NIL_RTFILE; 993 993 994 #ifdef __OS2__994 #ifdef RT_OS_OS2 995 995 996 996 /* nothing to do here, the process is supposed to be already … … 998 998 NOREF(fDaemonize); 999 999 1000 #else // ifdef __OS2__1000 #else // ifdef RT_OS_OS2 1001 1001 1002 1002 static int daemon_pipe_fds[2]; … … 1062 1062 } 1063 1063 1064 #endif // ifdef __OS2__1064 #endif // ifdef RT_OS_OS2 1065 1065 1066 1066 #if defined(USE_BACKTRACE) … … 1178 1178 { 1179 1179 printf ("\nStarting event loop....\n[send TERM signal to quit]\n"); 1180 #ifndef __OS2__1180 #ifndef RT_OS_OS2 1181 1181 /* now we're ready, signal the parent process */ 1182 1182 write(daemon_pipe_fds[1], "READY", strlen("READY")); … … 1239 1239 if (fDaemonize) 1240 1240 { 1241 #ifndef __OS2__1241 #ifndef RT_OS_OS2 1242 1242 /* close writing end of the pipe as well */ 1243 1243 close(daemon_pipe_fds[1]); -
trunk/src/VBox/Main/linux/server_module.cpp
r3388 r3668 20 20 */ 21 21 22 #ifdef __OS2__22 #ifdef RT_OS_OS2 23 23 # include <prproces.h> 24 24 #endif … … 59 59 60 60 /// @todo move this to RT headers (and use them in MachineImpl.cpp as well) 61 #if defined( __WIN__) || defined(__OS2__)61 #if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2) 62 62 #define HOSTSUFF_EXE ".exe" 63 #else /* ! __WIN__*/63 #else /* !RT_OS_WINDOWS */ 64 64 #define HOSTSUFF_EXE "" 65 #endif /* ! __WIN__*/65 #endif /* !RT_OS_WINDOWS */ 66 66 67 67 … … 169 169 startedOnce = true; 170 170 171 #ifdef __OS2__171 #ifdef RT_OS_OS2 172 172 char *const args[] = { VBoxSVCPath, "--automate", 0 }; 173 173 /* use NSPR because we want the process to be detached right
Note:
See TracChangeset
for help on using the changeset viewer.