mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
* modules/sys_select-h: Renamed from modules/sys_select. * modules/sys_select-h-tests: Renamed from modules/sys_select-tests. * modules/sys_select-h-c++-tests: Renamed from modules/sys_select-c++-tests. * tests/test-sys_select-h.c: Renamed from tests/test-sys_select.c. * tests/test-sys_select-h-c++.cc: Renamed from tests/test-sys_select-c++.cc. * doc/posix-headers/sys_select.texi: Update. * modules/* (Depends-on): Update. * modules/sys_select: New file.
37 lines
684 B
Plaintext
37 lines
684 B
Plaintext
Description:
|
|
pselect() function: synchronous I/O multiplexing.
|
|
|
|
Files:
|
|
lib/pselect.c
|
|
m4/pselect.m4
|
|
|
|
Depends-on:
|
|
sys_select-h
|
|
pthread_sigmask [test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1]
|
|
select [test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1]
|
|
dup2 [test $REPLACE_PSELECT = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_PSELECT
|
|
gl_CONDITIONAL([GL_COND_OBJ_PSELECT],
|
|
[test $HAVE_PSELECT = 0 || test $REPLACE_PSELECT = 1])
|
|
gl_SYS_SELECT_MODULE_INDICATOR([pselect])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_PSELECT
|
|
lib_SOURCES += pselect.c
|
|
endif
|
|
|
|
Include:
|
|
<sys/select.h>
|
|
|
|
Link:
|
|
$(SELECT_LIB)
|
|
$(PTHREAD_SIGMASK_LIB)
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Paul Eggert, Jim Meyering
|