aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/os_priority.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 9f872d04d..bd511a660 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -355,11 +355,13 @@ GNUNET_OS_process_status (pid_t proc, enum GNUNET_OS_ProcessStatusType *type,
355 *type = GNUNET_OS_PROCESS_SIGNALED; 355 *type = GNUNET_OS_PROCESS_SIGNALED;
356 *code = WSTOPSIG (status); 356 *code = WSTOPSIG (status);
357 } 357 }
358#ifdef WIFCONTINUED
358 else if (WIFCONTINUED (status)) 359 else if (WIFCONTINUED (status))
359 { 360 {
360 *type = GNUNET_OS_PROCESS_RUNNING; 361 *type = GNUNET_OS_PROCESS_RUNNING;
361 *code = 0; 362 *code = 0;
362 } 363 }
364#endif
363 else 365 else
364 { 366 {
365 *type = GNUNET_OS_PROCESS_UNKNOWN; 367 *type = GNUNET_OS_PROCESS_UNKNOWN;