代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/101500/15829646
cpp thread.cpp
// Thread.cpp: implementation of the CThread class.
//
//////////////////////////////////////////////////////////////////////
#include "Thread.h"
////////////////////////////////////////////////
www.eeworm.com/read/101128/15851852
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/101128/15852005
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/100975/15859124
ico thread.ico
www.eeworm.com/read/100563/15872056
cpp thread.cpp
#include
#include
#include
#include
#include
#include
#include
#include
#include
// threa
www.eeworm.com/read/100091/15885384
h thread.h
#ifndef THREAD_H
#define THREAD_H
#include
class Thread
{
private:
static void* entrypoint(void *parameters);
protected:
virtual void run() = 0;
public:
Thread(int synchronous = 0, in
www.eeworm.com/read/100091/15885386
c thread.c
#include
#include
#include
#include
#include "thread.h"
Thread::Thread(int synchronous = 0, int realtime = 0)
{
this->synchronous = synchronous;
this-
www.eeworm.com/read/100019/15887999
h thread.h
/***************************************************************************
* *
* This program is free software; you can re
www.eeworm.com/read/100019/15888000
c thread.c
//
// Copyright (c) 1999
//
// A C++ implementation of posix threads, using Linux clone system
// calls.
//
// The implementation is identical to the implementation found in
// the linuxthreads packag
www.eeworm.com/read/465618/7050551