Added definition for STILL_ACTIVE.
diff --git a/server/process.c b/server/process.c
index a28ed72..b12221e 100644
--- a/server/process.c
+++ b/server/process.c
@@ -143,7 +143,7 @@
process->thread_list = NULL;
process->debugger = NULL;
process->handles = NULL;
- process->exit_code = 0x103; /* STILL_ACTIVE */
+ process->exit_code = STILL_ACTIVE;
process->running_threads = 0;
process->priority = NORMAL_PRIORITY_CLASS;
process->affinity = 1;
diff --git a/server/thread.c b/server/thread.c
index 962a7bf..b042158 100644
--- a/server/thread.c
+++ b/server/thread.c
@@ -128,7 +128,7 @@
thread->pass_fd = -1;
thread->state = RUNNING;
thread->attached = 0;
- thread->exit_code = 0x103; /* STILL_ACTIVE */
+ thread->exit_code = STILL_ACTIVE;
thread->next = NULL;
thread->prev = NULL;
thread->priority = THREAD_PRIORITY_NORMAL;