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