diff options
Diffstat (limited to 'linuxthreads/internals.h')
-rw-r--r-- | linuxthreads/internals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index 27d4789cc8..f9bb36fd46 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -33,7 +33,7 @@ extern int __compare_and_swap (long int *p, long int oldval, long int newval); #include "pt-machine.h" #include "semaphore.h" #include "../linuxthreads_db/thread_dbP.h" -#include <cpuclock-init.h> +#include <hp-timing.h> #ifndef THREAD_GETMEM # define THREAD_GETMEM(descr, member) descr->member @@ -180,8 +180,8 @@ struct _pthread_descr_struct { struct __res_state *p_resp; /* Pointer to resolver state */ struct __res_state p_res; /* per-thread resolver state */ int p_inheritsched; /* copied from the thread attribute */ -#ifdef CPUCLOCK_VARDEF - CPUCLOCK_VARDEF (p_cpuclock_offset); /* Initial CPU clock for thread. */ +#if HP_TIMING_AVAIL + hp_timing_t p_cpuclock_offset; /* Initial CPU clock for thread. */ #endif /* New elements must be added at the end. */ } __attribute__ ((aligned(32))); /* We need to align the structure so that |