* assuan-connect.c (assuan_get_pid): New function.
authorMarcus Brinkmann <mb@g10code.com>
Thu, 22 Nov 2001 03:08:07 +0000 (03:08 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 22 Nov 2001 03:08:07 +0000 (03:08 +0000)
* assuan.h: Prototype.  Include sys/types.h for pid_t,
and stdio.h for FILE *.

assuan/assuan-connect.c
assuan/assuan.h

index 778b3a7709e00d6899ee8d1a96d6518dfcb8c052..37d4262550964f074e574930cd4570c7aee8dad6 100644 (file)
@@ -127,3 +127,9 @@ assuan_pipe_disconnect (ASSUAN_CONTEXT ctx)
   waitpid (ctx->pid, NULL, 0);  /* FIXME Check return value.  */
   assuan_deinit_pipe_server (ctx);
 }
+
+pid_t
+assuan_get_pid (ASSUAN_CONTEXT ctx)
+{
+  return ctx ? ctx->pid : -1;
+}
index 97462fb99e9712f5c935e7c3bd3c60e74dc789d1..5154d56f99ac4c6f7dec6bc85f93591898ee9a71 100644 (file)
@@ -21,6 +21,9 @@
 #ifndef ASSUAN_H
 #define ASSUAN_H
 
+#include <stdio.h>
+#include <sys/types.h>
+
 #ifdef __cplusplus
 extern "C" { 
 #if 0
@@ -100,6 +103,7 @@ void assuan_deinit_pipe_server (ASSUAN_CONTEXT ctx);
 AssuanError assuan_pipe_connect (ASSUAN_CONTEXT *ctx, const char *name,
                                  char *const argv[]);
 void assuan_pipe_disconnect (ASSUAN_CONTEXT ctx);
+pid_t assuan_get_pid (ASSUAN_CONTEXT ctx);
 
 /*-- assuan-util.c --*/
 void assuan_set_malloc_hooks ( void *(*new_alloc_func)(size_t n),