wait3 method

int wait3(
  1. Pointer<Int> arg0,
  2. int arg1,
  3. Pointer<rusage> arg2
)

Implementation

int wait3(
  ffi.Pointer<ffi.Int> arg0,
  int arg1,
  ffi.Pointer<rusage> arg2,
) {
  return _wait3(
    arg0,
    arg1,
    arg2,
  );
}