Deleted Added
full compact
thr_sigpending.c (50476) thr_sigpending.c (55838)
1/*
2 * Copyright (c) 1999 Daniel Eischen <eischen@vigrid.com>.
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) 1999 Daniel Eischen <eischen@vigrid.com>.
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_sigpending.c 50476 1999-08-28 00:22:10Z peter $
32 * $FreeBSD: head/lib/libkse/thread/thr_sigpending.c 55838 2000-01-12 09:28:58Z jasone $
33 */
34#include <signal.h>
35#include <errno.h>
36#ifdef _THREAD_SAFE
37#include <pthread.h>
38#include "pthread_private.h"
39
40int
33 */
34#include <signal.h>
35#include <errno.h>
36#ifdef _THREAD_SAFE
37#include <pthread.h>
38#include "pthread_private.h"
39
40int
41sigpending(sigset_t * set)
41_libc_sigpending(sigset_t * set)
42{
43 int ret = 0;
44
45 /* Check for a null signal set pointer: */
46 if (set == NULL) {
47 /* Return an invalid argument: */
48 ret = EINVAL;
49 }
50 else {
51 *set = _thread_run->sigpend;
52 }
53 /* Return the completion status: */
54 return (ret);
55}
42{
43 int ret = 0;
44
45 /* Check for a null signal set pointer: */
46 if (set == NULL) {
47 /* Return an invalid argument: */
48 ret = EINVAL;
49 }
50 else {
51 *set = _thread_run->sigpend;
52 }
53 /* Return the completion status: */
54 return (ret);
55}
56
57__weak_reference(_libc_sigpending, sigpending);
56#endif
58#endif