代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/486859/6531169
c thread.c
/*
+----------------------------------------------------------------------+
| |
| OCILIB - C Dri
www.eeworm.com/read/485607/6554503
h thread.h
#ifndef THREAD_H
#define THREAD_H
#include
class Thread : public QThread
{
Q_OBJECT
public:
Thread();
void setMessage(const QString &message);
void stop();
protected:
www.eeworm.com/read/485607/6554507
cpp thread.cpp
#include
#include
#include "thread.h"
Thread::Thread()
{
stopped = false;
}
void Thread::setMessage(const QString &message)
{
messageStr = message;
}
void Thread::run()
www.eeworm.com/read/483654/6600206
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/483654/6600209
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/483654/6600236
o thread.o
www.eeworm.com/read/482722/6621722
h thread.h
// InetThread.h : header file
//
/******************************************************************
Pre-emptive Multithreading Web Spider
*******************************************************
www.eeworm.com/read/482722/6621731
cpp thread.cpp
// InetThread.cpp : implementation file
#include "stdafx.h"
#include "Spider.h"
#include "ThreadParams.h"
#include "Thread.h"
#include "utily.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#unde
www.eeworm.com/read/482722/6621735