diff options
author | Marcus Brinkmann <[email protected]> | 2002-03-18 00:04:06 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-03-18 00:04:06 +0000 |
commit | 6cee0a4f3f060029531d7feaf7fe76f5c9d4196c (patch) | |
tree | 977b3783bc6489736bf67c5eaccf605b9ec705b1 /gpgme/wait.h | |
parent | 2002-03-17 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-6cee0a4f3f060029531d7feaf7fe76f5c9d4196c.tar.gz gpgme-6cee0a4f3f060029531d7feaf7fe76f5c9d4196c.zip |
2002-03-17 Marcus Brinkmann <[email protected]>
* configure.ac: Add automake conditional HAVE_DOSISH_SYSTEM.
gpgme/
2002-03-18 Marcus Brinkmann <[email protected]>
* Makefile.am (system_components): New variable, set depending on
HAVE_DOSISH_SYSTEM.
(libgpgme_la_SOURCES): Use system_components. Remove `syshdr.h'.
* syshdr.h: File removed.
* posix-io.c: Remove !HAVE_DOSISH_SYSTEM safeguard. Clean up source.
* posix-sema.c: Likewise.
* posix-util.c: Likewise.
* w32-io.c: Remove HAVE_DOSISH_SYSTEM safeguard.
* w32-sema.c: Likewise.
* w32-util.c: Likewise.
* posix-io.c: Include `unistd.h', do not include `syshdr.h'.
* posix-sema.c: Likewise.
* w32-io.c: Include `io.h', do not include `syshdr.h'
* w32-sema.c: Likewise.
* w32-util.c: Likewise.
* data.c: Do not include `syshdr.h'.
* wait.c: Likewise.
* wait.h: Code cleanup.
* mutex.h: New file.
* posix-sema.c: Implement.
Diffstat (limited to '')
-rw-r--r-- | gpgme/wait.h | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/gpgme/wait.h b/gpgme/wait.h index 857e5d5b..49737d6c 100644 --- a/gpgme/wait.h +++ b/gpgme/wait.h @@ -1,6 +1,6 @@ -/* wait.h - definitions for wait.c +/* wait.h - Definitions for the wait queue interface. * Copyright (C) 2000 Werner Koch (dd9jn) - * Copyright (C) 2001 g10 Code GmbH + * Copyright (C) 2001, 2002 g10 Code GmbH * * This file is part of GPGME. * @@ -24,17 +24,11 @@ #include "gpgme.h" -void _gpgme_remove_proc_from_wait_queue ( int pid ); - -GpgmeError _gpgme_register_pipe_handler ( - void *opaque, - int (*handler)(void*,int,int), - void *handler_value, - int pid, int fd, int inbound ); - -#endif /* WAIT_H */ - - - +void _gpgme_remove_proc_from_wait_queue (int pid); +GpgmeError _gpgme_register_pipe_handler (void *opaque, + int (*handler) (void*, int, int), + void *handler_value, + int pid, int fd, int inbound); +#endif /* WAIT_H */ |