代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/283334/4082935
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
b
www.eeworm.com/read/283334/4084760
cpp thread.cpp
/////////////////////////////////////////////////////////////////////////////
// Name: src/mac/carbon/thread.cpp
// Purpose: wxThread Implementation
// Author: Original from Wolfram
www.eeworm.com/read/283334/4084871
cpp thread.cpp
/////////////////////////////////////////////////////////////////////////////
// Name: thread.cpp
// Purpose: wxThread Implementation
// Author: Original from Wolfram Gloger/Guilhem
www.eeworm.com/read/282518/4101014
h thread.h
#ifndef THREAD_H
#define THREAD_H
#include
class Thread : public QThread
{
public:
Thread();
void setMessage(const QString &message);
void run();
void stop();
private:
www.eeworm.com/read/282518/4101017
cpp thread.cpp
#include
using namespace std;
#include "thread.h"
Thread::Thread()
{
stopped = false;
}
void Thread::setMessage(const QString &message)
{
messageStr = message;
}
void Thread::ru
www.eeworm.com/read/282119/4107332
h thread.h
// Thread.h (EX26C)
extern int g_nIndent;
extern CLSID g_clsid; // for the Text server
UINT WriteThreadProc(LPVOID pParam);
UINT ReadThreadProc(LPVOID pParam);
void ReadStorage(LPSTORAGE pStg
www.eeworm.com/read/282119/4107602
h thread.h
// Thread.h
extern int g_nIndent;
extern const char* g_szBlanks;
extern const char* g_szRootStorageName;
UINT WriteThreadProc(LPVOID pParam);
UINT ReadThreadProc(LPVOID pParam);
void ReadDir
www.eeworm.com/read/282119/4108617
h thread.h
// Thread.h (EX26C)
extern int g_nIndent;
extern CLSID g_clsid; // for the Text server
UINT WriteThreadProc(LPVOID pParam);
UINT ReadThreadProc(LPVOID pParam);
void ReadStorage(LPSTORAGE pStg
www.eeworm.com/read/282119/4108885
h thread.h
// Thread.h
extern int g_nIndent;
extern const char* g_szBlanks;
extern const char* g_szRootStorageName;
UINT WriteThreadProc(LPVOID pParam);
UINT ReadThreadProc(LPVOID pParam);
void ReadDir
www.eeworm.com/read/281683/4113459
java thread.java
package java.lang;
/**
* A thread of execution (or task). Now handles priorities, daemon threads
* and interruptions.
*/
public abstract class Thread
{
/**
* The minimum priority that a threa