mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4047
This commit is contained in:
parent
dbbbbd76f6
commit
0bbc41712f
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue