pthread_create method
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);
}