blob: 7c82b1831524248f3fe6dbd0320ba94545372dee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include <time.h>
#include "pthread_impl.h"
int timer_delete(timer_t t)
{
if ((uintptr_t)t & 1)
return __syscall(SYS_timer_delete, ((unsigned long)t / 2));
return pthread_cancel(t);
}
|