代码搜索:Threads

找到约 7,387 项符合「Threads」的源代码

代码结果 7,387
www.eeworm.com/read/372449/9510246

c thread1.c

#include #include #include int main() { printf("POSIX version is set to %ld\n", _POSIX_VERSION); if (_POSIX_VERSION < 199506L) { if (_POSIX_C_SOURCE >=
www.eeworm.com/read/175598/9540335

c once2.c

/* * once2.c * * * -------------------------------------------------------------------------- * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright(C) 1998 John E. Bossom
www.eeworm.com/read/175598/9540448

c once3.c

/* * once3.c * * * -------------------------------------------------------------------------- * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright(C) 1998 John E. Bossom
www.eeworm.com/read/175598/9540510

c pthread_key_create.c

/* * pthread_key_create.c * * Description: * POSIX thread functions which implement thread-specific data (TSD). * * -------------------------------------------------------------------------- *
www.eeworm.com/read/365783/9847618

c thread1.c

#include #include #include int main() { printf("POSIX version is set to %ld\n", _POSIX_VERSION); if (_POSIX_VERSION < 199506L) { if (_POSIX_C_SOURCE >=
www.eeworm.com/read/167647/9957493

c appthreads.c

/* * Copyright 2002 by Texas Instruments Incorporated. * All rights reserved. Property of Texas Instruments Incorporated. * Restricted rights to use, duplicate or disclose this code are *
www.eeworm.com/read/356881/10219668

readme

WELCOME! The State Threads Library is a small application library which provides a foundation for writing fast and highly scalable Internet applications (such as web servers, proxy servers, mail tran
www.eeworm.com/read/278507/10530149

lc web03.lc

#include "unpthread.h"## 1 ##src/threads/web03.c## #include /* Solaris threads */## 2 ##src/threads/web03.c## #define MAXFILES 20## 3 ##src/threads/web03.c## #define S
www.eeworm.com/read/278507/10530159

lc readline.lc

/* include readline1 */ #include "unpthread.h"## 1 ##src/threads/readline.c## static pthread_key_t rl_key;## 2 ##src/threads/readline.c## static pthread_once_t rl_once = PTHREAD_ONCE_INIT;## 3
www.eeworm.com/read/278507/10530163

lc example01.lc

#include "unpthread.h"## 1 ##src/threads/example01.c## #define NLOOP 5000## 2 ##src/threads/example01.c## int counter; /* this is incremented by the threads */## 3 ##src/thr