示例#1
0
 public static int pthread_create <TArg0>(out pthread_t thread, void *attr, start_routine <TArg0> start_routine, TArg0 arg)
 {
     throw null;
 }
示例#2
0
        //x:/util/android-ndk-r10e/platforms/android-21/arch-arm/usr/include/pthread.h:177:5: note: expected 'void * (*)(void *)' but argument is of type 'void (*)(void)'
        // int pthread_create(pthread_t*, pthread_attr_t const*, void *(*)(void*), void*) __nonnull((1, 3));


        // http://man7.org/linux/man-pages/man3/pthread_create.3.html
        public static int pthread_create(out pthread_t thread, void *attr, start_routine start_routine, object arg)
        {
            throw null;
        }