aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-22 23:59:54 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-22 23:59:54 +0200
commitea901fb4978ee7e9cfd2f74c810f2146bdf9d46b (patch)
treef2bbad92955ed144bc6afa9a03ece372c20a874a /src/util
parent9ef7f0704fa0458f2e27ba188aec5102dbb780b2 (diff)
downloadgnunet-ea901fb4978ee7e9cfd2f74c810f2146bdf9d46b.tar.gz
gnunet-ea901fb4978ee7e9cfd2f74c810f2146bdf9d46b.zip
-simplify libgnunetpq to only support single-threaded applications that do use the scheudler (when using event API)
Diffstat (limited to 'src/util')
-rw-r--r--src/util/os_priority.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index dc2f0f97e..08320b291 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -47,7 +47,6 @@ struct GNUNET_OS_Process
47 */ 47 */
48 pid_t pid; 48 pid_t pid;
49 49
50
51 /** 50 /**
52 * Pipe we use to signal the process. 51 * Pipe we use to signal the process.
53 * NULL if unused, or if process was deemed uncontrollable. 52 * NULL if unused, or if process was deemed uncontrollable.
@@ -301,7 +300,8 @@ GNUNET_OS_process_destroy (struct GNUNET_OS_Process *proc)
301 * @param flags open flags (O_RDONLY, O_WRONLY) 300 * @param flags open flags (O_RDONLY, O_WRONLY)
302 */ 301 */
303static void 302static void
304open_dev_null (int target_fd, int flags) 303open_dev_null (int target_fd,
304 int flags)
305{ 305{
306 int fd; 306 int fd;
307 307