clock_getres method

int clock_getres(
  1. int __clock_id,
  2. Pointer<timespec> __res
)

Implementation

int clock_getres(
  int __clock_id,
  ffi.Pointer<timespec> __res,
) {
  return _clock_getres(
    __clock_id,
    __res,
  );
}