代码搜索:thread

找到约 10,000 项符合「thread」的源代码

代码结果 10,000
www.eeworm.com/read/198784/5082351

cpp thread.cpp

#include "Thread.h" CThread::CThread(bool createsuspended, int priority =-1) { m_CreateSuspended = createsuspended; SetThreadState(issCreate); m_ThreadName = NULL; sem_init(&m_Threa
www.eeworm.com/read/198784/5082390

h thread.h

#ifndef _THREAD_H_ #define _THREAD_H_ #include "../include/comhead.h" #include #include //#include "ThreadPool.h" typedef sem_t Semaphore; typedef enum { THREAD_IDLE =
www.eeworm.com/read/198784/5082398

cpp thread.cpp

#include "Thread.h" void* GlobalThreadFunction(void* argv) { CThread* thread = reinterpret_cast(argv); if (thread) { thread->SetThreadState(THREAD_RUNNING); thread->Run(); th
www.eeworm.com/read/198364/5087667

aspx thread.aspx

vti_encoding:SR|utf8-nl vti_timelastmodified:TR|03 Nov 2003 04:28:03 -0000 vti_extenderversion:SR|4.0.2.6513
www.eeworm.com/read/197187/5097459

cpp thread.cpp

#include #include #include "struct.h" #include "pool.h" #include "netmsg.h" HANDLE iocp; SOCKET slisten; int sport = 5500; CInordPool olexPoo
www.eeworm.com/read/194563/5127563

tex thread.tex

\section{\class{wxThread}}\label{wxthread} A thread is basically a path of execution through a program. Threads are sometimes called {\it light-weight processes}, but the fundamental difference betwe
www.eeworm.com/read/194563/5129106

cpp thread.cpp

///////////////////////////////////////////////////////////////////////////// // Name: src/mac/carbon/thread.cpp // Purpose: wxThread Implementation // Author: Original from Wolfram Gl
www.eeworm.com/read/194563/5129217

cpp thread.cpp

///////////////////////////////////////////////////////////////////////////// // Name: src/mac/classic/thread.cpp // Purpose: wxThread Implementation // Author: Original from Wolfram G
www.eeworm.com/read/193974/5138487

test_thread

test_thread thread (test_thread.py) concurrent threads locks
www.eeworm.com/read/192433/5156319

js thread.js

/** * 线程管理类 * @author zxub 2006-06-12 */ function Thread(_task,_delay,_times) { this.runFlag=false; this.busyFlag=false; this.taskArgs=Array.prototype.slice.call(arguments,3);