clock_gettime method

int clock_gettime(
  1. clockid_t __clock_id,
  2. Pointer<timespec> __tp
)

Implementation

int clock_gettime(
  clockid_t __clock_id,
  ffi.Pointer<timespec> __tp,
) {
  return _clock_gettime(
    __clock_id.value,
    __tp,
  );
}