aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_child_management_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_child_management_lib.h')
-rw-r--r--src/include/gnunet_child_management_lib.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/include/gnunet_child_management_lib.h b/src/include/gnunet_child_management_lib.h
index a35b37865..ab0ab93eb 100644
--- a/src/include/gnunet_child_management_lib.h
+++ b/src/include/gnunet_child_management_lib.h
@@ -18,7 +18,15 @@
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19 */ 19 */
20 20
21#if ! defined (__GNUNET_UTIL_LIB_H_INSIDE__)
22#error "Only <gnunet_util_lib.h> can be included directly."
23#endif
24
21/** 25/**
26 * @addtogroup libgnunetutil
27 * Multi-function utilities library for GNUnet programs
28 * @{
29 *
22 * @file include/gnunet_child_management_lib.h 30 * @file include/gnunet_child_management_lib.h
23 * @brief GNUnet child management api 31 * @brief GNUnet child management api
24 * @author Christian Grothoff 32 * @author Christian Grothoff
@@ -41,8 +49,7 @@ struct GNUNET_ChildWaitHandle;
41 * @param cls handle for the callback 49 * @param cls handle for the callback
42 * @param type type of the process 50 * @param type type of the process
43 * @param exit_code status code of the process 51 * @param exit_code status code of the process
44 * 52 */
45*/
46typedef void 53typedef void
47(*GNUNET_ChildCompletedCallback)(void *cls, 54(*GNUNET_ChildCompletedCallback)(void *cls,
48 enum GNUNET_OS_ProcessStatusType type, 55 enum GNUNET_OS_ProcessStatusType type,
@@ -70,3 +77,5 @@ void
70GNUNET_wait_child_cancel (struct GNUNET_ChildWaitHandle *cwh); 77GNUNET_wait_child_cancel (struct GNUNET_ChildWaitHandle *cwh);
71 78
72#endif 79#endif
80
81/** @} */ /* end of group addition */