aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_os_lib.h4
-rw-r--r--src/include/gnunet_scheduler_lib.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 65069d0bf..eb2bfe766 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -470,7 +470,7 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc,
470 470
471/** 471/**
472 * Wait for a process to terminate. The return code is discarded. 472 * Wait for a process to terminate. The return code is discarded.
473 * You must not use 'GNUNET_OS_process_status' on the same process 473 * You must not use #GNUNET_OS_process_status() on the same process
474 * after calling this function! This function is blocking and should 474 * after calling this function! This function is blocking and should
475 * thus only be used if the child process is known to have terminated 475 * thus only be used if the child process is known to have terminated
476 * or to terminate very soon. 476 * or to terminate very soon.
@@ -485,7 +485,7 @@ GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc);
485/** 485/**
486 * Connects this process to its parent via pipe; 486 * Connects this process to its parent via pipe;
487 * essentially, the parent control handler will read signal numbers 487 * essentially, the parent control handler will read signal numbers
488 * from the 'GNUNET_OS_CONTROL_PIPE' (as given in an environment 488 * from the #GNUNET_OS_CONTROL_PIPE (as given in an environment
489 * variable) and raise those signals. 489 * variable) and raise those signals.
490 * 490 *
491 * @param cls closure (unused) 491 * @param cls closure (unused)
diff --git a/src/include/gnunet_scheduler_lib.h b/src/include/gnunet_scheduler_lib.h
index e675f7448..94e13f9b2 100644
--- a/src/include/gnunet_scheduler_lib.h
+++ b/src/include/gnunet_scheduler_lib.h
@@ -227,7 +227,7 @@ typedef int
227 * always only create a single scheduler. 227 * always only create a single scheduler.
228 * 228 *
229 * @param task task to run first (and immediately) 229 * @param task task to run first (and immediately)
230 * @param task_cls closure of task 230 * @param task_cls closure of @a task
231 */ 231 */
232void 232void
233GNUNET_SCHEDULER_run (GNUNET_SCHEDULER_TaskCallback task, 233GNUNET_SCHEDULER_run (GNUNET_SCHEDULER_TaskCallback task,