aboutsummaryrefslogtreecommitdiff
path: root/src/util/os_priority.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/os_priority.c')
-rw-r--r--src/util/os_priority.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index c494f88dc..4bcb481a6 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -448,7 +448,9 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig)
448 /* pipe failed, try other methods */ 448 /* pipe failed, try other methods */
449 switch (sig) 449 switch (sig)
450 { 450 {
451#if !WINDOWS
451 case SIGHUP: 452 case SIGHUP:
453#endif
452 case SIGINT: 454 case SIGINT:
453 case SIGKILL: 455 case SIGKILL:
454 case SIGTERM: 456 case SIGTERM:
@@ -500,7 +502,9 @@ GNUNET_OS_process_close (struct GNUNET_OS_Process *proc)
500#endif 502#endif
501 if (NULL != proc->childpipename) 503 if (NULL != proc->childpipename)
502 { 504 {
505#if !WINDOWS
503 cleanup_npipe (proc->childpipename); 506 cleanup_npipe (proc->childpipename);
507#endif
504 GNUNET_free (proc->childpipename); 508 GNUNET_free (proc->childpipename);
505 } 509 }
506 GNUNET_free (proc); 510 GNUNET_free (proc);