compile fix

svn path=/trunk/boinc/; revision=22410
This commit is contained in:
David Anderson 2010-09-24 20:37:45 +00:00
parent fcbb8a286e
commit 082603f927
2 changed files with 8 additions and 8 deletions

View File

@ -75,13 +75,6 @@ bool exclusive_gpu_app_running;
int gpu_suspend_reason;
double non_boinc_cpu_usage;
#define ABORT_TIMEOUT 60
// if we send app <abort> request, wait this long before killing it.
// This gives it time to download symbol files (which can be several MB)
// and write stack trace to stderr
#define QUIT_TIMEOUT 10
// Same, for <quit>. Shorter because no stack trace is generated
ACTIVE_TASK::~ACTIVE_TASK() {
}

View File

@ -28,6 +28,13 @@
#include "app_ipc.h"
#include "procinfo.h"
#define ABORT_TIMEOUT 60
// if we send app <abort> request, wait this long before killing it.
// This gives it time to download symbol files (which can be several MB)
// and write stack trace to stderr
#define QUIT_TIMEOUT 10
// Same, for <quit>. Shorter because no stack trace is generated
// values for preempt_type
//
#define REMOVE_NEVER 0
@ -35,7 +42,7 @@
#define REMOVE_MAYBE_SCHED 2
#define REMOVE_ALWAYS 3
class CLIENT_STATE;
struct CLIENT_STATE;
typedef int PROCESS_ID;
#define MAX_STDERR_LEN 65536