Deleted Added
full compact
thr_sigprocmask.c (51794) thr_sigprocmask.c (55838)
1/*
2 * Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/lib/libkse/thread/thr_sigprocmask.c 51794 1999-09-29 15:18:46Z marcel $
32 * $FreeBSD: head/lib/libkse/thread/thr_sigprocmask.c 55838 2000-01-12 09:28:58Z jasone $
33 */
34#include <sys/param.h>
35#include <sys/types.h>
36#include <sys/signalvar.h>
37#include <signal.h>
38#include <errno.h>
39#ifdef _THREAD_SAFE
40#include <pthread.h>
41#include "pthread_private.h"
42
43int
33 */
34#include <sys/param.h>
35#include <sys/types.h>
36#include <sys/signalvar.h>
37#include <signal.h>
38#include <errno.h>
39#ifdef _THREAD_SAFE
40#include <pthread.h>
41#include "pthread_private.h"
42
43int
44sigprocmask(int how, const sigset_t * set, sigset_t * oset)
44_libc_sigprocmask(int how, const sigset_t * set, sigset_t * oset)
45{
46 int ret = 0;
47
48 /* Check if the existing signal process mask is to be returned: */
49 if (oset != NULL) {
50 /* Return the current mask: */
51 *oset = _thread_run->sigmask;
52 }

--- 31 unchanged lines hidden (view full) ---

84 * Dispatch signals to the running thread that are pending
85 * and now unblocked:
86 */
87 _dispatch_signals();
88 }
89 /* Return the completion status: */
90 return (ret);
91}
45{
46 int ret = 0;
47
48 /* Check if the existing signal process mask is to be returned: */
49 if (oset != NULL) {
50 /* Return the current mask: */
51 *oset = _thread_run->sigmask;
52 }

--- 31 unchanged lines hidden (view full) ---

84 * Dispatch signals to the running thread that are pending
85 * and now unblocked:
86 */
87 _dispatch_signals();
88 }
89 /* Return the completion status: */
90 return (ret);
91}
92
93__weak_reference(_libc_sigprocmask, sigprocmask);
92#endif
94#endif