代码搜索:thread

找到约 10,000 项符合「thread」的源代码

代码结果 10,000
www.eeworm.com/read/355115/10291946

cpp thread.cpp

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///[Thread - Parent class for classes who want to be executed in new thread]//////
www.eeworm.com/read/161964/10351483

html thread.html

www.eeworm.com/read/161964/10351802

html thread.html

www.eeworm.com/read/161674/10386709

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/161674/10386718

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/424424/10451565

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/424424/10451577

cpp thread.cpp

#include #include #include "thread.h" using namespace std; Thread::Thread() { stopped = false; } void Thread::setMessage(const QString &message) { messageStr = message;
www.eeworm.com/read/279175/10457037

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/279175/10457110

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/424297/10465874

bas thread.bas

Attribute VB_Name = "Module1" 'Private Const SW_HIDE = 0 'Private Const SW_SHOWNORMAL = 1 'Private Const SW_NORMAL = 1 'Private Const SW_SHOWMINIMIZED = 2 'Private Const SW_SHOWMAXIMIZED = 3 '