代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/112192/6147966
c mutex.c
/*
* mutex.c
*
* Description:
* This translation unit implements mutual exclusion (mutex) primitives.
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright (C) 1998
*
* Th
www.eeworm.com/read/112192/6147971
c sched.c
/*
* sched.c
*
* Description:
* POSIX thread functions that deal with thread scheduling.
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright (C) 1998
*
* This library i
www.eeworm.com/read/101042/6258142
readme
Mutithreading testing area.
Since this stuff is very very platorm specific, this is not part of the
normal build. Have a read of doc/threads.doc.
mttest will do some testing and will currently buil
www.eeworm.com/read/408502/11384222
cpp step7.cpp
/* Cancel - Creates a new thread with long running query when the letter 'a' is typed.
* Cancels a query when letter 'C' is typed.
* All threads are terminated when the letter 'Q' is entered.
www.eeworm.com/read/408502/11384286
cpp step7.cpp
/* Cancel - Creates a new thread with long running query when the letter 'a' is typed.
* Cancels a query when letter 'C' is typed.
* All threads are terminated when the letter 'Q' is entered.
www.eeworm.com/read/158402/11620673
java rider.java
package nachos.threads;
import nachos.machine.*;
/**
* A single rider. Each rider accesses the elevator bank through an
* instance of RiderControls.
*/
public class Rider implements Ride
www.eeworm.com/read/158402/11620675
java lock.java
package nachos.threads;
import nachos.machine.*;
/**
* A Lock is a synchronization primitive that has two states,
* busy and free. There are only two operations allowed on a
www.eeworm.com/read/158402/11620726
java threadedkernel.java
package nachos.threads;
import nachos.machine.*;
/**
* A multi-threaded OS kernel.
*/
public class ThreadedKernel extends Kernel {
/**
* Allocate a new multi-threaded kernel.
*/
www.eeworm.com/read/158402/11620886
java synchconsole.java
package nachos.userprog;
import nachos.machine.*;
import nachos.threads.*;
import nachos.userprog.*;
/**
* Provides a simple, synchronized interface to the machine's console. The
* interface can a
www.eeworm.com/read/158402/11620889
java userprocess.java
package nachos.userprog;
import nachos.machine.*;
import nachos.threads.*;
import nachos.userprog.*;
import java.io.EOFException;
/**
* Encapsulates the state of a user process that is not contain