diff options
author | Werner Koch <[email protected]> | 2010-03-22 12:16:18 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-03-22 12:16:18 +0000 |
commit | f807c38fc5e6b703b85fe86ea8946c9f42bc3e53 (patch) | |
tree | b1467ffba675527d6dafe50c9c6b8b200b8e7026 /doc | |
parent | Refactored platform system code. (diff) | |
download | libassuan-f807c38fc5e6b703b85fe86ea8946c9f42bc3e53.tar.gz libassuan-f807c38fc5e6b703b85fe86ea8946c9f42bc3e53.zip |
Changed the implementation of CreatePipe under W32CE.
Reorganized the source.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/assuan.texi | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/assuan.texi b/doc/assuan.texi index be60ecd..9176973 100644 --- a/doc/assuan.texi +++ b/doc/assuan.texi @@ -1064,12 +1064,13 @@ program @var{name}, passing the arguments given in the NULL-terminated list @var{argv}. A list of file descriptors not to be closed may be given using the @code{ASSUAN_INVLID_FD} terminated array @var{fd_child_list}. -If @var{name} is a null pointer, only a fork but no exec is done. -Thus the child continues to run. However all file descriptors are -closed and some special environment variables are set. To let the -caller detect whether the child or the parent continues, the parent -returns with @code{"client"} returned in @var{argv} and the child -returns with @code{"server"} in @var{argv}. +If @var{name} is a null pointer, only a fork but no exec is done. Thus +the child continues to run. However all file descriptors are closed and +some special environment variables are set. To let the caller detect +whether the child or the parent continues, the parent returns with +@code{"client"} returned in @var{argv} and the child returns with +@code{"server"} in @var{argv}. This feature is only available on POSIX +platforms. If @var{atfork} is not NULL, this function is called in the child right after the fork and the value @var{atforkvalue} is passed as the first |