Changeset 27743 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 26, 2010 2:50:55 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59375
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r27682 r27743 888 888 rc = RTProcCreate (path, args, env, 0, &pid); 889 889 # else 890 rc = RTProcCreate (path, args, env, RTPROC_FLAGS_DAEMONIZE , &pid);890 rc = RTProcCreate (path, args, env, RTPROC_FLAGS_DAEMONIZE_DEPRECATED, &pid); 891 891 # endif 892 892 if (RT_FAILURE (rc)) … … 936 936 strcpy (cmd, VirtualBox_exe); 937 937 const char * args[] = {path, "-systray", 0 }; 938 938 # ifdef RT_OS_WINDOWS /** @todo drop this once the RTProcCreate bug has been fixed */ 939 939 rc = RTProcCreate (path, args, env, 0, &pid); 940 941 rc = RTProcCreate (path, args, env, RTPROC_FLAGS_DAEMONIZE , &pid);942 940 # else 941 rc = RTProcCreate (path, args, env, RTPROC_FLAGS_DAEMONIZE_DEPRECATED, &pid); 942 # endif 943 943 944 944 if (RT_FAILURE (rc))
Note:
See TracChangeset
for help on using the changeset viewer.