代码搜索:thread

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

代码结果 10,000
www.eeworm.com/read/347002/3178501

cpp thread.cpp

/*____________________________________________________________________________ FreeAmp - The Free MP3 Player Portions Copyright (C) 1998-1999 EMusic.com This program is free software; you
www.eeworm.com/read/340665/3283037

java thread.java

// Thread.java - Thread class. /* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation This file is part of libgcj. This software is copyrighted work licensed under the terms of t
www.eeworm.com/read/340538/3285038

h thread.h

// $Id: thread.h,v 1.1.1.1 2002/09/24 11:12:17 dev Exp $ #ifndef _thread_h_ #define _thread_h_ #include #define lib_CreateThread( \ lpThreadAttributes, \ dwStackSize, \
www.eeworm.com/read/339586/3297530

hpp thread.hpp

// // thread.hpp // ~~~~~~~~~~ // // Copyright (c) 2003-2007 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // f
www.eeworm.com/read/339586/3297580

hpp thread.hpp

// // thread.hpp // ~~~~~~~~~~ // // Copyright (c) 2003-2007 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // f
www.eeworm.com/read/339446/3308309

pri thread.pri

# Qt core thread module # public headers HEADERS += thread/qmutex.h \ thread/qreadwritelock.h \ thread/qsemaphore.h \ thread/qthread.h \ thread/qthreadstorage.h \
www.eeworm.com/read/339446/3308986

prf thread.prf

CONFIG -= thread_off qt { target_qt:PRL_EXPORT_DEFINES += QT_THREAD_SUPPORT else:DEFINES += QT_THREAD_SUPPORT } # #### These need to go debug { contains(DEFINES, QT_DLL) { QMAKE_CFLAGS +=
www.eeworm.com/read/339446/3309007

prf thread.prf

!isEmpty(QMAKE_CFLAGS_THREAD) { QMAKE_CFLAGS += $$QMAKE_CFLAGS_THREAD QMAKE_EXPORT_CFLAGS += $$QMAKE_CFLAGS_THREAD } !isEmpty(QMAKE_CXXFLAGS_THREAD) { QMAKE_CXXFLAGS += $$QMAKE_CXXFLAGS_THREA
www.eeworm.com/read/339155/3310870

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/339155/3310874

cpp thread.cpp

#include #include #include "thread.h" using namespace std; Thread::Thread() { stopped = false; } void Thread::setMessage(const QString &message) { messageStr = message;