代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/493401/6402260
h thread.h
// thread.h
// Data structures for managing threads. A thread represents
// sequential execution of code within a program.
// So the state of a thread includes the program counter,
// the processor
www.eeworm.com/read/493401/6402261
cc thread.cc
// thread.cc
// Routines to manage threads. There are four main operations:
//
// Fork -- create a thread to run a procedure concurrently
// with the caller (this is done in two steps -- first
//
www.eeworm.com/read/493401/6402303
o thread.o
www.eeworm.com/read/493401/6402414
o thread.o
www.eeworm.com/read/493136/6407033
h thread.h
#pragma once
#ifndef KBCAFE_THREAD_H
#define KBCAFE_THREAD_H
#ifdef _WIN32
#ifndef _WINDOWS_
#include
#endif
#else
#error _WIN32 must be defined before you include thread.h
#e
www.eeworm.com/read/492058/6423611
h thread.h
/*
Copyright (c) 2008 TrueCrypt Foundation. All rights reserved.
Governed by the TrueCrypt License 2.6 the full text of which is contained
in the file License.txt included in TrueCrypt binary
www.eeworm.com/read/490421/6456161
dat thread.dat
www.eeworm.com/read/489590/6466102
h thread.h
#ifndef __THREAD_H__
#define __THREAD_H__
#include
// Thread
// cThread
// by typearc
// typearc@empal.com
class cThread
{
protected:
HANDLE mhThread;
DWORD mIDThr