diff options
| author | Paul Eggert | 2011-07-08 13:20:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-08 13:20:19 -0700 |
| commit | 2a84b02da8b20138fad7fafdea92d7c8f0564ee0 (patch) | |
| tree | da64c1fd303aa85b53ad485779b05fbdd2685a28 /lib/pthread_sigmask.c | |
| parent | 1692ae2dd5ff8f6f1fc6f6f62b9a44ab7e615615 (diff) | |
| download | emacs-2a84b02da8b20138fad7fafdea92d7c8f0564ee0.tar.gz emacs-2a84b02da8b20138fad7fafdea92d7c8f0564ee0.zip | |
Simplify Emacs part of pthread_sigmask support.
* Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid sigprocmask.
* configure.in (AC_TYPE_UID_T): New dummy macro.
Configure gnulib after adjusting LIBS,
so that gnulib can assume the libraries in LIBS.
* lib/pthread_sigmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
New files, automatically imported from gnulib.
* lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
* src/Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
(LIBES): Use it.
Diffstat (limited to 'lib/pthread_sigmask.c')
| -rw-r--r-- | lib/pthread_sigmask.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/pthread_sigmask.c b/lib/pthread_sigmask.c new file mode 100644 index 00000000000..1f460f13c48 --- /dev/null +++ b/lib/pthread_sigmask.c | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* POSIX compatible signal blocking for threads. | ||
| 2 | Copyright (C) 2011 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation; either version 3 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 16 | |||
| 17 | #include <config.h> | ||
| 18 | |||
| 19 | /* Specification. */ | ||
| 20 | #include <signal.h> | ||
| 21 | |||
| 22 | #include <errno.h> | ||
| 23 | |||
| 24 | int | ||
| 25 | pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask) | ||
| 26 | { | ||
| 27 | int ret = sigprocmask (how, new_mask, old_mask); | ||
| 28 | return (ret < 0 ? errno : 0); | ||
| 29 | } | ||