pthread_once method

int pthread_once(
  1. Pointer<pthread_once_t> arg0,
  2. Pointer<NativeFunction<Void Function()>> arg1
)

Implementation

int pthread_once(
  ffi.Pointer<pthread_once_t> arg0,
  ffi.Pointer<ffi.NativeFunction<ffi.Void Function()>> arg1,
) {
  return _pthread_once(arg0, arg1);
}