pthread_create method

int pthread_create(
  1. Pointer<pthread_t> arg0,
  2. Pointer<pthread_attr_t> arg1,
  3. Pointer<NativeFunction<Pointer<Void> Function(Pointer<Void>)>> arg2,
  4. Pointer<Void> arg3,
)

Implementation

int pthread_create(
  ffi.Pointer<pthread_t> arg0,
  ffi.Pointer<pthread_attr_t> arg1,
  ffi.Pointer<
    ffi.NativeFunction<ffi.Pointer<ffi.Void> Function(ffi.Pointer<ffi.Void>)>
  >
  arg2,
  ffi.Pointer<ffi.Void> arg3,
) {
  return _pthread_create(arg0, arg1, arg2, arg3);
}