代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/170967/9778021
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/132541/14084351
java showthreaderror.java
package examples.threads;
/** A class to demonstrate the run-time error that
* occurs if wait, notify, or notifyAll are used
* when no lock has been obtained.
*/
public class ShowThreadEr
www.eeworm.com/read/201518/15403057
pas main.pas
unit main;
{ Copyright (c) 1996 by Charlie Calvert
Shows how to use Mutexs when working with threads.
The program intentionally creates an error condition
and then shows how to use Mutex
www.eeworm.com/read/201518/15403076
pas main.pas
unit main;
{ Copyright 1996 by Charlie Calvert
Shows how to use Critical Sections with Threads
You can run code either with, or without Critical
Sections turned on. They are turned on wh
www.eeworm.com/read/201518/15403115
pas main.pas
unit main;
{ Copyright (c) 1996 by Charlie Calvert
Shows how to use Mutexs when working with threads.
The program intentionally creates an error condition
and then shows how to use Mutex
www.eeworm.com/read/201518/15403134
pas main.pas
unit main;
{ Copyright 1996 by Charlie Calvert
Shows how to use Critical Sections with Threads
You can run code either with, or without Critical
Sections turned on. They are turned on wh
www.eeworm.com/read/113863/15446427
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 {
www.eeworm.com/read/110176/15540714
java synchbanktest.java
/**
@version 1.20 1999-04-26
@author Cay Horstmann
*/
/**
This program shows how to avoid data corruption
when multiple threads access a data structure
*/
public class SynchBan
www.eeworm.com/read/106368/15638598
c buffer.c
//
// This example demonstrates semaphores.
//
#include
#include
#include
#if( GCC_VERSION>=2096 )
#include
#else
#include
#endif
using