代码搜索:pThread
找到约 7,828 项符合「pThread」的源代码
代码结果 7,828
www.eeworm.com/read/213147/4926984
makefile
CPPFLAGS = -pthread -D__cplusplus -D_LINUX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
#CPPFLAGS = -static -pthread -D__cplusplus -D_LINUX -D_LINUX_STATIC -D_REENTRANT $(INCLUDES)
#LDFLAGS = -stat
www.eeworm.com/read/213147/4926993
svn-base makefile.svn-base
CPPFLAGS = -pthread -D__cplusplus -D_LINUX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
#CPPFLAGS = -static -pthread -D__cplusplus -D_LINUX -D_LINUX_STATIC -D_REENTRANT $(INCLUDES)
#LDFLAGS = -stat
www.eeworm.com/read/213147/4927735
makefile
CPPFLAGS = -DENABLE_BINRELOC -pthread -D__cplusplus -D_UNIX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
LDSOFLAGS = -shared -Wl,-soname
#CPPFLAGS = -static -pthread -D__cplusplus -D_UNIX -D_LINUX_
www.eeworm.com/read/213147/4927751
svn-base makefile.svn-base
CPPFLAGS = -DENABLE_BINRELOC -pthread -D__cplusplus -D_UNIX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
LDSOFLAGS = -shared -Wl,-soname
#CPPFLAGS = -static -pthread -D__cplusplus -D_UNIX -D_LINUX_
www.eeworm.com/read/213147/4929059
makefile
CPPFLAGS = -pthread -D__cplusplus -D_LINUX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
#CPPFLAGS = -static -pthread -D__cplusplus -D_LINUX -D_LINUX_STATIC -D_REENTRANT $(INCLUDES)
#LDFLAGS = -stat
www.eeworm.com/read/213147/4929068
svn-base makefile.svn-base
CPPFLAGS = -pthread -D__cplusplus -D_LINUX -D_REENTRANT $(INCLUDES)
LDFLAGS = -pthread
#CPPFLAGS = -static -pthread -D__cplusplus -D_LINUX -D_LINUX_STATIC -D_REENTRANT $(INCLUDES)
#LDFLAGS = -stat
www.eeworm.com/read/200278/5070774
c mutex2.c
#include
#include
#define NHASH 29
#define HASH(fp) (((unsigned long)fp)%NHASH)
struct foo *fh[NHASH];
pthread_mutex_t hashlock = PTHREAD_MUTEX_INITIALIZER;
struct foo {
in
www.eeworm.com/read/338072/3324595
c getservby_r.c
#include "pthread.h"
#include
#include
static pthread_mutex_t getservby_mutex = PTHREAD_MUTEX_INITIALIZER;
static int
convert (struct servent *ret, struct servent *result,
www.eeworm.com/read/338072/3324604
c getprotoby_r.c
#include "pthread.h"
#include
#include
static pthread_mutex_t getprotoby_mutex = PTHREAD_MUTEX_INITIALIZER;
static int
convert (struct protoent *ret, struct protoent *result,
www.eeworm.com/read/298657/3860739
c ecmutex.c
/* Test of the error checking mutex and incidently also barriers. */
#include
#include
#include
#include
static pthread_mutex_t locks[] =
{
PTHREAD_ERR