代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/127767/14336013
txt e102. implementing a work queue.txt
The work queue is thread-safe so that multiple threads can simultaneously add and remove objects from it.
class WorkQueue {
LinkedList queue = new LinkedList();
public synchron
www.eeworm.com/read/227674/14418024
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/223685/14619350
txt pthread_attr_getinheritsched.txt
pthread_attr_getinheritsched Subroutine
Purpose
Returns the value of the inheritsched attribute of a thread attributes
object.
Library
Threads Library (libpthreads.a)
Syntax
#include
www.eeworm.com/read/222777/14674032
c demo.c
/* This is a small demo of the high-performance ThreadX kernel. It includes examples of eight
threads of different priorities, using a message queue, semaphore, mutex, event flags group,
byt
www.eeworm.com/read/120641/14794564
cs broken.cs
using System;
using System.Threading;
using System.Collections;
namespace MSPress.CSharpCoreRef.Threads
{
public class Broken
{
const int MaxLoops = 20000;
protected
www.eeworm.com/read/214672/15092204
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/210310/15202015
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/494230/1161184
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/491809/1187515
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/491809/1187518
h scheduler.h
// scheduler.h
// Data structures for the thread dispatcher and scheduler.
// Primarily, the list of threads that are ready to run.
//
// Copyright (c) 1992-1993 The Regents of the University of Cali