2004-07-08 23:55:54 +00:00
|
|
|
/* Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
2001-04-21 07:55:01 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2002-08-26 22:40:48 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
2001-04-21 07:55:01 +00:00
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2002-08-26 22:40:48 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-04-21 07:55:01 +00:00
|
|
|
|
2002-08-26 22:40:48 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2001-04-21 07:55:01 +00:00
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
2004-07-08 23:55:54 +00:00
|
|
|
#include <errno.h>
|
2001-04-21 07:55:01 +00:00
|
|
|
#include <time.h>
|
|
|
|
#include <libc-internal.h>
|
2001-04-23 19:01:10 +00:00
|
|
|
#include "internals.h"
|
2004-07-08 23:55:54 +00:00
|
|
|
#include "spinlock.h"
|
2001-04-21 07:55:01 +00:00
|
|
|
|
|
|
|
|
2001-04-23 19:01:10 +00:00
|
|
|
#if HP_TIMING_AVAIL
|
2001-04-21 07:55:01 +00:00
|
|
|
int
|
2004-07-08 23:55:54 +00:00
|
|
|
__pthread_clock_gettime (clockid_t clock_id, hp_timing_t freq,
|
|
|
|
struct timespec *tp)
|
2001-04-21 07:55:01 +00:00
|
|
|
{
|
2004-07-08 23:55:54 +00:00
|
|
|
hp_timing_t tsc, cpuclock_offset;
|
2001-04-21 07:55:01 +00:00
|
|
|
pthread_descr self = thread_self ();
|
2004-07-08 23:55:54 +00:00
|
|
|
pthread_t thread = ((unsigned int) clock_id) >> CLOCK_IDFIELD_SIZE;
|
|
|
|
const unsigned int mask = ~0U >> CLOCK_IDFIELD_SIZE;
|
|
|
|
|
|
|
|
if (thread == 0 || (THREAD_GETMEM (self, p_tid) & mask) == thread)
|
|
|
|
cpuclock_offset = THREAD_GETMEM (self, p_cpuclock_offset);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pthread_descr th;
|
|
|
|
pthread_handle handle = thread_handle (thread);
|
|
|
|
__pthread_lock (&handle->h_lock, NULL);
|
|
|
|
th = handle->h_descr;
|
|
|
|
if (th == NULL || (th->p_tid & mask) != thread || th->p_terminated)
|
|
|
|
{
|
|
|
|
__pthread_unlock (&handle->h_lock);
|
|
|
|
__set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
cpuclock_offset = th->p_cpuclock_offset;
|
|
|
|
__pthread_unlock (&handle->h_lock);
|
|
|
|
}
|
2001-04-21 07:55:01 +00:00
|
|
|
|
|
|
|
/* Get the current counter. */
|
2001-04-23 19:01:10 +00:00
|
|
|
HP_TIMING_NOW (tsc);
|
2001-04-21 07:55:01 +00:00
|
|
|
|
|
|
|
/* Compute the offset since the start time of the process. */
|
2004-07-08 23:55:54 +00:00
|
|
|
tsc -= cpuclock_offset;
|
2001-04-21 07:55:01 +00:00
|
|
|
|
|
|
|
/* Compute the seconds. */
|
|
|
|
tp->tv_sec = tsc / freq;
|
|
|
|
|
|
|
|
/* And the nanoseconds. This computation should be stable until
|
|
|
|
we get machines with about 16GHz frequency. */
|
|
|
|
tp->tv_nsec = ((tsc % freq) * 1000000000ull) / freq;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2001-04-23 19:01:10 +00:00
|
|
|
#endif
|