Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/posix_spawnattr_getsigdefault @ 17111:b8250ce33952
hash-pjw: relax license to LGPLv2+
* modules/hash-pjw (License): Relax, with consent of author.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 26 Sep 2012 20:12:57 -0700 |
parents | f7f11056a86e |
children |
rev | line source |
---|---|
10520
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 posix_spawnattr_getsigdefault() function: get the set of signals with initially |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 the default handler specified for child process. |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 Files: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 lib/spawnattr_getdefault.c |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 m4/posix_spawn.m4 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 Depends-on: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 spawn |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 configure.ac: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 gl_POSIX_SPAWN |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 AC_LIBOBJ([spawnattr_getdefault]) |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 fi |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 gl_SPAWN_MODULE_INDICATOR([posix_spawnattr_getsigdefault]) |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 Makefile.am: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 Include: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 <spawn.h> |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 License: |
13830
10297800b5ad
posix_spawn*, getdtablesize: Relax license.
Bruno Haible <bruno@clisp.org>
parents:
10520
diff
changeset
|
25 LGPLv2+ |
10520
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 Maintainer: |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 Bruno Haible, glibc |
d68de14ed3e7
New module 'posix_spawnattr_getsigdefault'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
29 |