代码搜索:Operations
找到约 10,000 项符合「Operations」的源代码
代码结果 10,000
www.eeworm.com/read/481966/6634165
cpp 1813.cpp
/* This Code is Submitted by wywcgs for Problem 1813 on 2006-01-15 at 15:13:02 */
#include
int main()
{
int i, a, b;
while(scanf("%d %d", &a, &b) == 2 && (a != 0 || b != 0)) {
www.eeworm.com/read/481225/6645075
h synch-sleep.h
// synch.h
// Data structures for synchronizing threads.
//
// Three kinds of synchronization are defined here: semaphores,
// locks, and condition variables. The implementation for
// semaphores is
www.eeworm.com/read/481225/6645097
h synch.h
// synch.h
// Data structures for synchronizing threads.
//
// Three kinds of synchronization are defined here: semaphores,
// locks, and condition variables. The implementation for
// semaphores is
www.eeworm.com/read/481225/6645107
h synch-sem.h
// synch.h
// Data structures for synchronizing threads.
//
// Three kinds of synchronization are defined here: semaphores,
// locks, and condition variables. The implementation for
// semaphores is
www.eeworm.com/read/481225/6645184
h syscall.h
/* syscalls.h
* Nachos system call interface. These are Nachos kernel operations
* that can be invoked from user programs, by trapping to the kernel
* via the "syscall" instruction.
*
* This