代码搜索:Threads

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

代码结果 7,387
www.eeworm.com/read/475101/6803574

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/392996/8316177

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/235522/14065476

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/203690/15353033

pas rtchwndpool.pas

{ "Window Handle Pool" - Copyright (c) Danijel Tkalcec @html() This unit implements a pool of Window Handles, associated with their threads. Sicne creating Windows Handles takes a co
www.eeworm.com/read/110505/15532414

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/304657/3793923

pc_excludes

solaris_threads.c solaris_pthreads.c irix_threads.c pcr_interface.c real_malloc.c mips_mach_dep.s rs6000_mach_dep.s alpha_mach_dep.s sparc_mach_dep.s PCR-Makefile setjmp_t.c callprocs doc/gc.man pc_ex
www.eeworm.com/read/290548/8477240

c workqueue.c

/* * linux/kernel/workqueue.c * * Generic mechanism for defining kernel helper threads for running * arbitrary tasks in process context. * * Started by Ingo Molnar, Copyright (C) 2002 * * Deri
www.eeworm.com/read/386607/8735617

java testharness.java

package net.jcip.examples; import java.util.concurrent.*; /** * TestHarness * * Using CountDownLatch for starting and stopping threads in timing tests * * @author Brian Goetz and Tim Peier
www.eeworm.com/read/380939/9121587

c demo.c

/* This is a small demo of the high-performance ThreadX kernel. It includes examples of six threads of different priorities, message queues, semaphores, and event flags. */ #include "tx_api
www.eeworm.com/read/167847/9950270

c prodcons5.c

#include "unpipc.h" #define MAXNITEMS 1000000 #define MAXNTHREADS 100 /* globals shared by threads */ int nitems; /* read-only by producer and consumer */ int buff[MAXNITEMS]; struct {