Deleted Added
full compact
thr_nanosleep.c (53812) thr_nanosleep.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_nanosleep.c 53812 1999-11-28 05:38:13Z alfred $
32 * $FreeBSD: head/lib/libkse/thread/thr_nanosleep.c 55838 2000-01-12 09:28:58Z jasone $
33 */
34#include <stdio.h>
35#include <errno.h>
36#ifdef _THREAD_SAFE
37#include <pthread.h>
38#include "pthread_private.h"
39
40int
33 */
34#include <stdio.h>
35#include <errno.h>
36#ifdef _THREAD_SAFE
37#include <pthread.h>
38#include "pthread_private.h"
39
40int
41nanosleep(const struct timespec * time_to_sleep,
42 struct timespec * time_remaining)
41_libc_nanosleep(const struct timespec * time_to_sleep,
42 struct timespec * time_remaining)
43{
44 int ret = 0;
45 struct timespec current_time;
46 struct timespec current_time1;
47 struct timespec remaining_time;
48 struct timeval tv;
49
50 _thread_enter_cancellation_point();

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

115 /* Return an EINTR error : */
116 errno = EINTR;
117 ret = -1;
118 }
119 }
120 _thread_leave_cancellation_point();
121 return (ret);
122}
43{
44 int ret = 0;
45 struct timespec current_time;
46 struct timespec current_time1;
47 struct timespec remaining_time;
48 struct timeval tv;
49
50 _thread_enter_cancellation_point();

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

115 /* Return an EINTR error : */
116 errno = EINTR;
117 ret = -1;
118 }
119 }
120 _thread_leave_cancellation_point();
121 return (ret);
122}
123
124__weak_reference(_libc_nanosleep, nanosleep);
123#endif
125#endif