*** empty log message ***

svn path=/trunk/boinc/; revision=4047
This commit is contained in:
Daniel Hsu 2004-08-11 15:27:46 +00:00
parent dbbbbd76f6
commit 0bbc41712f
3 changed files with 21 additions and 1 deletions

View File

@ -16079,7 +16079,7 @@ David 7 Aug 2004
client/
gui_rpc_server.C
Daniel 2004-08-06
Daniel 2004-08-09
- client:
- check for exited apps right before (re)starting them for any
reason (unsuspend_all(), resume_or_start())
@ -16207,3 +16207,11 @@ David 11 Aug 2004
db/
boinc_db.C
Daniel 2004-08-11
- client: #include fixes for app.C refactoring
client/
app_control.C
app_start.C

View File

@ -31,9 +31,15 @@
#if HAVE_SYS_IPC_H
#include <sys/ipc.h>
#endif
#if HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#if HAVE_SYS_SIGNAL_H
#include <sys/signal.h>
#endif
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#endif

View File

@ -27,6 +27,12 @@
#if HAVE_SYS_IPC_H
#include <sys/ipc.h>
#endif
#if HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#include <unistd.h>
#endif