代码搜索:pthread_create

找到约 436 项符合「pthread_create」的源代码

代码结果 436
www.eeworm.com/read/100411/15874460

m4 gnome-pthread-check.m4

dnl dnl And better, use gthreads instead... dnl AC_DEFUN([GNOME_PTHREAD_CHECK],[ PTHREAD_LIB="" AC_CHECK_LIB(pthread, pthread_create, PTHREAD_LIB="-lpthread", [AC_CHECK_LIB(pthreads, pthread_crea
www.eeworm.com/read/233448/4686968

java gthreadnativemethodrunner.java

/* GThreadNativeMethodRunner.java -- Implements pthread_create(), under glib's gthread abstraction, for use with GNU Classpath's --portable-native-sync option. This is used by gthread-jni.c
www.eeworm.com/read/304657/3789373

java gthreadnativemethodrunner.java

/* GThreadNativeMethodRunner.java -- Implements pthread_create(), under glib's gthread abstraction, for use with GNU Classpath's --portable-native-sync option. This is used by gthread-jni.c
www.eeworm.com/read/162614/5532772

java gthreadnativemethodrunner.java

/* GThreadNativeMethodRunner.java -- Implements pthread_create(), under glib's gthread abstraction, for use with GNU Classpath's --portable-native-sync option. This is used by gthread-jni.c
www.eeworm.com/read/162519/5542304

java gthreadnativemethodrunner.java

/* GThreadNativeMethodRunner.java -- Implements pthread_create(), under glib's gthread abstraction, for use with GNU Classpath's --portable-native-sync option. This is used by gthread-jni.c
www.eeworm.com/read/323676/13326895

cpp thread.cpp

#include "thread.h" Thread::Thread() {} int Thread::Start(void *arg) { Arg(arg); //store user data int code = pthread_create(&PthreadId_,NULL,Thread::EntryPoint,arg); return cod
www.eeworm.com/read/246537/4493585

c example01.c

#include "unpthread.h" #define NLOOP 5000 int counter; /* this is incremented by the threads */ void *doit(void *); int main(int argc, char **argv) { pthread_t tidA, tidB; Pthread_create(&t
www.eeworm.com/read/290808/3970825

c example01.c

#include "unpthread.h" #define NLOOP 5000 int counter; /* incremented by threads */ void *doit(void *); int main(int argc, char **argv) { pthread_t tidA, tidB; Pthread_create(&tidA, NULL, &
www.eeworm.com/read/419387/2078629

c pthreads.c

#include #include /* Under OSF 2.0 & 3.0 and HPUX 10, the second arg of pthread_create is prototyped to be just a "pthread_attr_t", while under Solaris it is a "pthread_at
www.eeworm.com/read/419387/2078994

c pthreads.c

#include #include /* Under OSF 2.0 & 3.0 and HPUX 10, the second arg of pthread_create is prototyped to be just a "pthread_attr_t", while under Solaris it is a "pthread_at