代码搜索:Threads

找到约 7,387 项符合「Threads」的源代码

代码结果 7,387
www.eeworm.com/read/321494/13404052

readme

Tiobench and tiotest Threaded I/O bench for Linux (or any *nix system with POSIX threads support library) Author can be reached at: miku@iki.fi Copyright (C) 1999-2000 Mika Kuoppala This program
www.eeworm.com/read/139870/5796691

java timingtest.java

package JACE.tests.Concurrency; import JACE.OS.*; import JACE.ASX.*; import JACE.Concurrency.*; /** * Performs a test with 5 threads. This should test what happens during * renews, also
www.eeworm.com/read/139291/5805914

readme

Leader MPM: This is an experimental variant of the standard worker MPM. It uses a Leader/Followers design pattern to coordinate work among threads: http://deuce.doc.wustl.edu/doc/pspdfs/lf.pdf To use
www.eeworm.com/read/136989/5828952

java mtqueue.java

// MTQueue.java,v 1.2 1999/02/12 15:35:20 cdgill Exp // This is a queue class for use by multiple threads, with at least one // thread enqueueing objects and another dequeueing them. The dequeue_
www.eeworm.com/read/127694/6002449

c example01.c

#include "unpthread.h" #define NLOOP 5000 int counter; /* this is incremented by the threads */ void *doit(void *); int main(int argc, char **argv) { pthread_t tidA, tidB; Pthread_create(&t
www.eeworm.com/read/127694/6002454

c example02.c

#include "unpthread.h" #define NLOOP 5000 int counter; /* this is incremented by the threads */ pthread_mutex_t counter_mutex = PTHREAD_MUTEX_INITIALIZER; void *doit(void *); int main(int argc
www.eeworm.com/read/112192/6147964

c signal.c

/* * signal.c * * Description: * Thread-aware signal functions. * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright (C) 1998 * * This library is free software; you can r
www.eeworm.com/read/112192/6147974

h implement.h

/* * implement.h * * Definitions that don't need to be public. * * Keeps all the internals out of pthread.h * * Pthreads-win32 - POSIX Threads Library for Win32 * Copyright (C) 1998
www.eeworm.com/read/101153/6237803

rtl readme.rtl

This module allows RT-threads to communicate via serial ports. The documentation is in the *.html files. testcom.c and com_posix.c demonstrate basic communication. They send and receive data through
www.eeworm.com/read/486343/6539951

cpp killprocess.cpp

// Kill a process by name // by Eugene Polonsky // NT4 requires separate handling, because it doesn't support the ToolHelp32 API // for more details see http://www.codeproject.com/threads/killpr