代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/493401/6402260
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/493068/6405546
bas modfunctions.bas
Attribute VB_Name = "modFunctions"
'This Module contains the functions called in the threads.
'They have to be in a module because you have to use the AddressOf-
'function which will only work with
www.eeworm.com/read/483654/6600206
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/481225/6645084
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/403756/11511115
htm css_special.htm
/*
Spacial Threads Offical Style for Discuz!(R)
URL: http://www.discuz.net
(C) 2001-2007 Comsenz Inc.
*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
www.eeworm.com/read/158402/11620674
java condition2.java
package nachos.threads;
import nachos.machine.*;
/**
* An implementation of condition variables that disables interrupt()s for
* synchronization.
*
*
* You must implement this.
*
* @see n
www.eeworm.com/read/346040/11772799
txt releasenotes.txt
About S60 Platform: Multiple Threads Example v1.1
--------------------
The Thread Example is an example program that demonstrates thread usage and
synchronization. The example is based on the docu
www.eeworm.com/read/156503/11796199
java unsynchbanktest.java
/**
@version 1.30 2004-08-01
@author Cay Horstmann
*/
/**
This program shows data corruption when multiple threads access a data structure.
*/
public class UnsynchBankTest
{
www.eeworm.com/read/150696/12270956
c my_pthread.c
/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */
/* Functions to get threads more portable */
#in
www.eeworm.com/read/130781/14174377
c tanimate.c
/* tanimate.c: animate several strings using threads, curses, usleep()
*
* bigidea one thread for each animated string
* one thread for keyboard control
* shared variables for communication
*