Home
last modified time | relevance | path

Searched refs:sigev (Results 1 – 1 of 1) sorted by relevance

/vendor/hihope/rk3568/bluetooth/src/
Dhardware.c525 struct sigevent sigev; in OsAllocateTimer() local
528 (void)memset_s(&sigev, sizeof(struct sigevent), 0, sizeof(struct sigevent)); in OsAllocateTimer()
530 sigev.sigev_notify = SIGEV_THREAD; in OsAllocateTimer()
531 sigev.sigev_notify_function = timer_callback; in OsAllocateTimer()
532 sigev.sigev_value.sival_ptr = &timerid; in OsAllocateTimer()
536 if (timer_create(CLOCK_REALTIME, &sigev, &timerid) == 0) { in OsAllocateTimer()