Deleted Added
full compact
thr_getcpuclockid.c (225736) thr_getcpuclockid.c (254398)
1/*
2 * Copyright (c) 2008 David Xu <davidxu@freebsd.org>
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 2008 David Xu <davidxu@freebsd.org>
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/9/lib/libthr/thread/thr_getcpuclockid.c 177494 2008-03-22 09:59:20Z davidxu $
26 * $FreeBSD: stable/9/lib/libthr/thread/thr_getcpuclockid.c 254398 2013-08-16 06:40:12Z davidxu $
27 */
28
29#include "namespace.h"
30#include <errno.h>
31#include <pthread.h>
32#include <sys/time.h>
33#include "un-namespace.h"
34
35#include "thr_private.h"
36
37__weak_reference(_pthread_getcpuclockid, pthread_getcpuclockid);
38
39int
40_pthread_getcpuclockid(pthread_t pthread, clockid_t *clock_id)
41{
27 */
28
29#include "namespace.h"
30#include <errno.h>
31#include <pthread.h>
32#include <sys/time.h>
33#include "un-namespace.h"
34
35#include "thr_private.h"
36
37__weak_reference(_pthread_getcpuclockid, pthread_getcpuclockid);
38
39int
40_pthread_getcpuclockid(pthread_t pthread, clockid_t *clock_id)
41{
42
42 if (pthread == NULL)
43 return (EINVAL);
44
43 if (pthread == NULL)
44 return (EINVAL);
45
45 *clock_id = CLOCK_THREAD_CPUTIME_ID;
46 if (clock_getcpuclockid2(TID(pthread), CPUCLOCK_WHICH_TID, clock_id))
47 return (errno);
46 return (0);
47}
48 return (0);
49}