代码搜索:Multithreading
找到约 719 项符合「Multithreading」的源代码
代码结果 719
www.eeworm.com/read/482722/6621726
txt copyright.txt
Pre-emptive Multithreading Web Spider
Copyright (c) 1998 by Sim Ayers.
Not derived from licensed software source code.
Permission is granted to anyone to use this software code for any
purpose
www.eeworm.com/read/408235/11401063
scm scheduler.scm
; scheduler.scm - Basic scheduler for multithreading
;
; Copyright (c) 2000-2007, Felix L. Winkelmann
; Copyright (c) 2008, The Chicken Team
; All rights reserved.
;
; Redistribution and use in source
www.eeworm.com/read/407176/11426496
txt copyright.txt
Pre-emptive Multithreading Web Spider
Copyright (c) 1998 by Sim Ayers.
Not derived from licensed software source code.
Permission is granted to anyone to use this software code for any
purpose
www.eeworm.com/read/158649/11596083
java multijabberserver.java
//: c15:MultiJabberServer.java
// A server that uses multithreading
// to handle any number of clients.
// {RunByHand}
import java.io.*;
import java.net.*;
class ServeOneJabber extends Thread
www.eeworm.com/read/156804/11763361
c exitcode.c
/*
* ExitCode.c
*
* Sample code for "Multithreading Applications in Win32"
* This is from Chapter 2, Listing 2-2
*
* Start two threads and try to exit
* when the user presses a key.
*/
www.eeworm.com/read/156804/11763480
c iobyapc.c
/*
* IoByAPC.c
*
* Sample code for Multithreading Applications in Win32
* This is from Chapter 6, Listing 6-3
*
* Demonstrates how to use APC's (asynchronous
* procedure calls) instead o
www.eeworm.com/read/156804/11763509
c exitthrd.c
/*
* ExitThrd.c
*
* Sample code for "Multithreading Applications in Win32"
* This is from Chapter 2, Listing 2-3
*
* Demonstrate ExitThread
*/
#define WIN32_LEAN_AND_MEAN
#include
www.eeworm.com/read/156804/11763669
c error.c
/*
* Error.c
*
* Sample code for "Multithreading Applications in Win32"
* This is from Chapter 2, Listing 2-4
*
* Demonstrate ExitThread
*/
#define WIN32_LEAN_AND_MEAN
#include
www.eeworm.com/read/156804/11763732
c echosrv.c
/*
* EchoSrv.c
*
* Sample code for Multithreading Applications in Win32
* This is from Chapter 6, Listing 6-4
*
* Demonstrates how to use I/O completion ports
* with TCP on the Internet.
www.eeworm.com/read/344239/11896100
java banktellersimulation.java
//: concurrency/BankTellerSimulation.java
// Using queues and multithreading.
// {Args: 5}
import java.util.concurrent.*;
import java.util.*;
// Read-only objects don't require synchronization: