From 0bbc41712f2302a5e62d22c45909e196bf179a96 Mon Sep 17 00:00:00 2001 From: Daniel Hsu Date: Wed, 11 Aug 2004 15:27:46 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4047 --- checkin_notes | 10 +++++++++- client/app_control.C | 6 ++++++ client/app_start.C | 6 ++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index a5a9118ca6..2853c5e574 100755 --- a/checkin_notes +++ b/checkin_notes @@ -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 + diff --git a/client/app_control.C b/client/app_control.C index 4f0f15fd06..7f4dcb92a5 100644 --- a/client/app_control.C +++ b/client/app_control.C @@ -31,9 +31,15 @@ #if HAVE_SYS_IPC_H #include #endif +#if HAVE_SYS_RESOURCE_H +#include +#endif #if HAVE_SYS_SIGNAL_H #include #endif +#if HAVE_SYS_WAIT_H +#include +#endif #endif diff --git a/client/app_start.C b/client/app_start.C index 249ac47006..9d473b7ddb 100644 --- a/client/app_start.C +++ b/client/app_start.C @@ -27,6 +27,12 @@ #if HAVE_SYS_IPC_H #include #endif +#if HAVE_SYS_RESOURCE_H +#include +#endif +#if HAVE_SYS_WAIT_H +#include +#endif #include #endif