mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
2003-03-25 Roland McGrath <roland@redhat.com>
* sysdeps/pthread/posix-timer.h (TIMER_MAX): Define if not defined. (timer_id2ptr): Fix typo.
This commit is contained in:
parent
8e06652009
commit
333ab52196
@ -69,6 +69,13 @@ struct timer_node
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/* The limit is not published if we are compiled with kernel timer support.
|
||||||
|
But we still compiled in this implementation with its limit unless built
|
||||||
|
to require the kernel support. */
|
||||||
|
#ifndef TIMER_MAX
|
||||||
|
# define TIMER_MAX 256
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Static array with the structures for all the timers. */
|
/* Static array with the structures for all the timers. */
|
||||||
extern struct timer_node __timer_array[TIMER_MAX];
|
extern struct timer_node __timer_array[TIMER_MAX];
|
||||||
|
|
||||||
@ -111,7 +118,7 @@ timer_ptr2id (struct timer_node *timer)
|
|||||||
return timer - __timer_array;
|
return timer - __timer_array;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
# define timer_id2ptr(timerid) ((struct timed_node *) timerid)
|
# define timer_id2ptr(timerid) ((struct timer_node *) timerid)
|
||||||
# define timer_ptr2id(timerid) ((void *) timerid)
|
# define timer_ptr2id(timerid) ((void *) timerid)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user