mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-06-15 15:25:49 +00:00
86fe27800e
Suggested by Paul Eggert. * lib/spawn-pipe.c (execute): Use pthread_sigmask to get the set of blocked signals. * modules/spawn-pipe (Depends-on): Add pthread_sigmask.
74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
Description:
|
|
Creation of subprocesses, communicating via pipes.
|
|
|
|
Files:
|
|
lib/spawn-pipe.h
|
|
lib/spawn-pipe.c
|
|
lib/os2-spawn.h
|
|
lib/os2-spawn.c
|
|
m4/spawn-pipe.m4
|
|
|
|
Depends-on:
|
|
dup2
|
|
canonicalize
|
|
environ
|
|
error
|
|
fatal-signal
|
|
filename
|
|
findprog-in
|
|
free-posix
|
|
gettext-h
|
|
gnulib-i18n
|
|
msvc-nothrow
|
|
open
|
|
pipe2
|
|
pipe2-safer
|
|
spawn-h
|
|
posix_spawn
|
|
posix_spawnp
|
|
posix_spawn_file_actions_init
|
|
posix_spawn_file_actions_addclose
|
|
posix_spawn_file_actions_adddup2
|
|
posix_spawn_file_actions_addopen
|
|
posix_spawn_file_actions_addchdir
|
|
posix_spawn_file_actions_destroy
|
|
posix_spawnattr_init
|
|
posix_spawnattr_setpgroup
|
|
posix_spawnattr_setsigmask
|
|
posix_spawnattr_setflags
|
|
posix_spawnattr_destroy
|
|
pthread_sigmask
|
|
bool
|
|
stdlib-h
|
|
streq
|
|
unistd-h
|
|
unistd-safer
|
|
wait-process
|
|
windows-spawn
|
|
xalloc-die
|
|
|
|
configure.ac:
|
|
gl_SPAWN_PIPE
|
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
gl_CONDITIONAL([GL_COND_OBJ_OS2_SPAWN],
|
|
[case "$host_os" in os2*) true;; *) false;; esac])
|
|
|
|
Makefile.am:
|
|
lib_SOURCES += spawn-pipe.h spawn-pipe.c
|
|
if GL_COND_OBJ_OS2_SPAWN
|
|
lib_SOURCES += os2-spawn.c
|
|
endif
|
|
|
|
Include:
|
|
"spawn-pipe.h"
|
|
|
|
Link:
|
|
$(LIBTHREAD)
|
|
$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
all
|