代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/460649/7244182
h thread.h
// InetThread.h : header file
//
/******************************************************************
Pre-emptive Multithreading Web Spider
*******************************************************
www.eeworm.com/read/460649/7244189
cpp thread.cpp
// InetThread.cpp : implementation file
//
/*******************************************
Pre-emptive Multithreading Web Spider
Copyright (c) 1998 by Sim Ayers.
************************************
www.eeworm.com/read/392997/7247723
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/392997/7247737
cpp thread.cpp
// 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/392997/7247818
o thread.o
www.eeworm.com/read/459754/7264884
h thread.h
#ifndef __THREAD_H__
#define __THREAD_H__
#include
#include
#include "types.h"
#define THREAD_RETURN void*
#define THREAD_API
typedef pthre
www.eeworm.com/read/459754/7264885
c thread.c
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/457697/7320860
h thread.h
///
/// @file Thread.h
/// @brief 线程的封装 , 子类继承并实现自己的功能
/// @author guozhiming
/// @date 2007-05-16
///
#ifndef __G_THREAD__
#define __G_THREAD__
#include "def.h"
class G_Thread
{
public:
/// @b
www.eeworm.com/read/457697/7320863
cpp thread.cpp
#include "Thread.h"
#include "Log.h"
G_Thread::G_Thread()
{
maskSIGUSR1();
// 定义SIGUSR1信号阻塞
sigemptyset(&g_waitSig);
sigaddset(&g_waitSig, SIGUSR1);
}
G_Thread::~G_Thread()
{
}
void G_Thread::
www.eeworm.com/read/456781/7339809
cpp thread.cpp
#include "StdAfx.h"
#include "Thread.h"
CThread::CThread(void)
{
}
CThread::~CThread(void)
{
}