代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/445022/7601554
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by Threads.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#d
www.eeworm.com/read/197689/7975936
dsn 藏书.mdb.dsn
[ODBC]
DRIVER=Driver do Microsoft Access (*.mdb)
UID=admin
UserCommitSync=Yes
Threads=3
SafeTransactions=0
PageTimeout=5
MaxScanRows=8
MaxBufferSize=2048
FIL=MS Access
DriverId=281
DefaultD
www.eeworm.com/read/397931/8014945
dsn notebook.mdb.dsn
[ODBC]
DRIVER=Microsoft Access Driver (*.mdb)
UID=admin
UserCommitSync=Yes
Threads=3
SafeTransactions=0
PageTimeout=5
MaxScanRows=8
MaxBufferSize=2048
FIL=MS Access
DriverId=25
DefaultDir=D
www.eeworm.com/read/244832/12841830
dsn db4.mdb.dsn
[ODBC]
DRIVER=Microsoft Access Driver (*.mdb)
UID=admin
UserCommitSync=Yes
Threads=3
SafeTransactions=0
ReadOnly=0
PageTimeout=5
MaxScanRows=8
MaxBufferSize=2048
FIL=MS Access
Exclusive=1
www.eeworm.com/read/244832/12842036
dsn dbq.dsn
[ODBC]
DRIVER=Microsoft Access Driver (*.mdb)
UID=admin
UserCommitSync=Yes
Threads=3
SafeTransactions=0
ReadOnly=0
PageTimeout=5
MaxScanRows=8
MaxBufferSize=2048
FIL=MS Access
Exclusive=1
www.eeworm.com/read/244832/12842052
dsn cn.dsn
[ODBC]
DRIVER=Microsoft Access Driver (*.mdb)
UID=admin
UserCommitSync=Yes
Threads=3
SafeTransactions=0
PageTimeout=5
MaxScanRows=8
MaxBufferSize=2048
FIL=MS Access
DriverId=25
DefaultDir=E
www.eeworm.com/read/142657/12932375
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/242863/12976608
h philosopher.h
#ifndef _PHILOSOPHER
#define _PHILOSOPHER
#include
#include
#include
#include "dining.h"
using namespace std;
using namespace cpp_threads;
class philosopher : publi
www.eeworm.com/read/242863/12976615
c diner.c
//
// This is a philosopher demo, using process scoping.
#include
#include
#define MAX_PHILOSOPHERS 5
using namespace std;
using namespace cpp_threads;
int main()
{
www.eeworm.com/read/242863/12976653
c mutex.c
//
// class mutex
//
// Mutes is a semaphore, that can be used by two threads to mutually
// exclude the other. To ensure uniqe access to memory.
#include "thread.h"
#include "mutex.h"
#include "exc