代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/158865/5592984
h stl_alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/174213/9602126
h stl_alloc.h
/*
* Copyright (c) 1996-1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby gra
www.eeworm.com/read/267326/11182796
h trdlocal.h
#ifndef CRYPTOPP_TRDLOCAL_H
#define CRYPTOPP_TRDLOCAL_H
#include "config.h"
#ifdef THREADS_AVAILABLE
#include "misc.h"
#ifdef HAS_WINTHREADS
#include
typedef DWORD ThreadLoc
www.eeworm.com/read/133019/14057574
h trdlocal.h
#ifndef CRYPTOPP_TRDLOCAL_H
#define CRYPTOPP_TRDLOCAL_H
#include "config.h"
#ifdef THREADS_AVAILABLE
#include "misc.h"
#ifdef HAS_WINTHREADS
typedef unsigned long ThreadLocalIndexType;
www.eeworm.com/read/133019/14060651
h trdlocal.h
#ifndef CRYPTOPP_TRDLOCAL_H
#define CRYPTOPP_TRDLOCAL_H
#include "config.h"
#ifdef THREADS_AVAILABLE
#include "misc.h"
#ifdef HAS_WINTHREADS
typedef unsigned long ThreadLocalIndexType;
www.eeworm.com/read/200462/15432531
h trdlocal.h
#ifndef CRYPTOPP_TRDLOCAL_H
#define CRYPTOPP_TRDLOCAL_H
#include "config.h"
#ifdef THREADS_AVAILABLE
#include "misc.h"
#ifdef HAS_WINTHREADS
typedef unsigned long ThreadLocalIndexType;
www.eeworm.com/read/112766/15477369
c srchcrt.c
/*
* SrchCrt.c
*
* Sample code for "Multithreading Applications in Win32"
* This is from Chapter 8, Listing 8-1
*
* Uses multiple threads to search the files
* "*.c" in the current dire
www.eeworm.com/read/106368/15638611
c sem2.c
#include
#include
using namespace cpp_threads;
int main()
{
Pthread::setProject( "/tmp/sematest" );
Semaphore sem(attributes::process_shared_e);
sem.post();
www.eeworm.com/read/103743/15724450
m4 acinclude.m4
dnl Special Autoconf Macros for OpenVPN
dnl OPENVPN_ADD_LIBS(LIB)
AC_DEFUN([OPENVPN_ADD_LIBS], [
LIBS="$1 $LIBS"
])
dnl @synopsis AX_CPP_VARARG_MACRO_GCC
dnl
dnl Test if the preprocessor understan
www.eeworm.com/read/100019/15888005
h thread_spinlock.h
#ifndef __THREADS_SPINLOCK_H
#define __THREADS_SPINLOCK_H
/**
* A spinlock, is a primitive semaphore. With it we acquire
* a unique lock, and release that lock.
*/
struct spinlock {
int s_spinl