代码搜索:Threads

找到约 7,387 项符合「Threads」的源代码

代码结果 7,387
www.eeworm.com/read/127694/6002448

c test04.c

/* test readline() */ #include "unpthread.h" static char *infile; /* from argv[1]; read-only by threads */ void * myfunc(void *ptr) { int i, fdin; char buf[MAXLINE]; FILE *fpout; snprintf(buf
www.eeworm.com/read/126641/6014637

c mttest.c

/* crypto/threads/mttest.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com)
www.eeworm.com/read/125811/6021441

makefile

TARGET_TYPE = OBJECT_LIBRARY TARGET = rmmemorymanager.o SRC = rmmmhomemade.c # always rebuild... # rminit.o needs it with threads, # realmagichwl_kernelland without, # rua with MMGBUS switch PREBUIL
www.eeworm.com/read/103725/6212615

cpp trdlocal.cpp

// trdlocal.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "trdlocal.h" #ifdef THREADS_AVAILABLE NAMESPACE_BEGIN(CryptoPP) ThreadLocalStorage::Err::Err(const st
www.eeworm.com/read/101042/6258141

c mttest.c

/* crypto/threads/mttest.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com)
www.eeworm.com/read/408584/11380452

c test04.c

/* test readline() */ #include "unpthread.h" static char *infile; /* from argv[1]; read-only by threads */ void * myfunc(void *ptr) { int i, fdin; char buf[MAXLINE]; FILE *fpout; snprintf(buf
www.eeworm.com/read/408584/11380454

c example01.c

#include "unpthread.h" #define NLOOP 5000 int counter; /* incremented by threads */ void *doit(void *); int main(int argc, char **argv) { pthread_t tidA, tidB; Pthread_create(&tidA, NULL, &
www.eeworm.com/read/158402/11620748

java vmprocess.java

package nachos.vm; import nachos.machine.*; import nachos.threads.*; import nachos.userprog.*; import nachos.vm.*; /** * A UserProcess that supports demand-paging. */ public class VMProce
www.eeworm.com/read/158402/11620876

java tcb.java

// PART OF THE MACHINE SIMULATION. DO NOT CHANGE. package nachos.machine; import nachos.security.*; import nachos.threads.KThread; import java.util.Vector; import java.security.PrivilegedAction; /
www.eeworm.com/read/158402/11621069

java netkernel.java

package nachos.network; import nachos.machine.*; import nachos.threads.*; import nachos.userprog.*; import nachos.vm.*; import nachos.network.*; /** * A kernel with network support. */ public clas