代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/180123/9318953
cpp thread2.cpp
// thread2.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "thread2.h"
#include "thread2Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
s
www.eeworm.com/read/180123/9318955
dsw thread2.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/375612/9355657
h thread-pool.h
#include
#include
#include
#include
#include
#ifndef TPBOOL
typedef int TPBOOL;
#endif
#ifndef TRUE
#define TRUE 1
#endif
#if
www.eeworm.com/read/375612/9355659
c thread-pool.c
#include "thread-pool.h"
static void *tp_work_thread(void *pthread);
static void *tp_manage_thread(void *pthread);
static TPBOOL tp_init(tp_thread_pool *this);
static void tp_close(tp_thread_p
www.eeworm.com/read/375214/9368640
c aodv_thread.c
/***************************************************************************
aodv_thread.c - description
-------------------
begin
www.eeworm.com/read/375214/9368735
h aodv_thread.h
/***************************************************************************
aodv_thread.h - description
-------------------
begin
www.eeworm.com/read/178825/9385105
c thread_mutex.c
#include
#include
#include
#define THREAD_NUM 8
void *functionC();
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
int counter = 0;
main()
{
pthread_t threa
www.eeworm.com/read/178825/9385109
c thread_cond.c
#include
#include
#include
pthread_mutex_t count_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t condition_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t c
www.eeworm.com/read/178825/9385111
c thread_create.c
#include
#include
#include
void *print_message_function( void *ptr );
main()
{
pthread_t thread1, thread2;
char *message1 = "Thread 1";
char *message2
www.eeworm.com/read/178825/9385113
c thread_join.c
#include
#include
#define NTHREADS 10
void *thread_function();
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
int counter = 0;
main()
{
pthread_t thread_id[NTHREADS];