timer_create method

int timer_create(
  1. int __clock_id,
  2. Pointer<sigevent> __evp,
  3. Pointer<timer_t> __timerid
)

Implementation

int timer_create(
  int __clock_id,
  ffi.Pointer<sigevent> __evp,
  ffi.Pointer<timer_t> __timerid,
) {
  return _timer_create(
    __clock_id,
    __evp,
    __timerid,
  );
}