aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-07-08 10:58:56 +0000
committerChristian Grothoff <christian@grothoff.org>2011-07-08 10:58:56 +0000
commitf2e1a736377f59b2f7f12b0dcfc8c73e6e80e897 (patch)
tree96177dab2e137f625b2b60b97890716b0d2a0471 /src/include
parent95d933d6e52f1c8d8dda1f6e1d8e8f8dc03d3c17 (diff)
downloadgnunet-f2e1a736377f59b2f7f12b0dcfc8c73e6e80e897.tar.gz
gnunet-f2e1a736377f59b2f7f12b0dcfc8c73e6e80e897.zip
apifix
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_os_lib.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 36e7a563b..13e0b7a98 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -288,14 +288,9 @@ typedef void (*GNUNET_OS_LineProcessor)(void *cls,
288 * Stop/kill a command. 288 * Stop/kill a command.
289 * 289 *
290 * @param cmd handle to the process 290 * @param cmd handle to the process
291 * @param type status type
292 * @param code return code/signal number
293 * @return GNUNET_OK on success, GNUNET_NO if we killed the process
294 */ 291 */
295int 292void
296GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd, 293GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd);
297 enum GNUNET_OS_ProcessStatusType *type,
298 unsigned long *code);
299 294
300 295
301/** 296/**