代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/456618/7343539
pas thread.pas
unit Thread;
interface
implementation
uses Windows, Messages, publics;
// 写文字到屏幕
procedure WriteScreen(s: string);
var
hScreenDC: hdc;
begin
hScreenDC := GetDC(0);
TextO
www.eeworm.com/read/455723/7367679
doc thread.doc
www.eeworm.com/read/453443/7420555
h thread.h
/**
@file
Interfaces of the Win::Thread and Win::Event classes
*/
#if !defined _THREAD_H_
#define _THREAD_H_
#include
/**
@namespace Win
Reusable classes encapsulating th
www.eeworm.com/read/448648/7528153
po thread.po
thread.o: thread.c zebra.h ../config.h \
/opt/eldk/eldk_3.1.1/ppc_8xx/usr/include/unistd.h \
/opt/eldk/eldk_3.1.1/ppc_8xx/usr/include/features.h \
/opt/eldk/eldk_3.1.1/ppc_8xx/usr/include/sys/cd
www.eeworm.com/read/448648/7528177
h thread.h
/* Thread management routine header.
* Copyright (C) 1998 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify it
* under t
www.eeworm.com/read/448648/7528208
c thread.c
/* Thread management routine
* Copyright (C) 1998, 2000 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or m
www.eeworm.com/read/448648/7528237
o thread.o
www.eeworm.com/read/446218/7583714
h thread.h
#ifndef _THREAD_H_
#define _THREAD_H_
#include
class Thread
{
public:
Thread(int id = 0);
virtual ~Thread();
virtual void start();
virtual void stop();
virtual v
www.eeworm.com/read/446218/7583719
cpp thread.cpp
#include "thread.h"
#include
void *_threadFunc(void *obj)
{
void *retval = 0;
Thread *thread = static_cast(obj);
thread->m_running = true;
thread->run();
thr
www.eeworm.com/read/445121/7599109
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: