代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/407447/2263980
c process.c
#include
#include
#include
//Ends the calling process and all its threads.
VOID WINAPI ExitProcess(
UINT uExitCode
){
printf("ExitProcess: %d\n", uExitCode
www.eeworm.com/read/402480/2321714
h thread-st.h
/*
* $Id:$
* Generic version: no threads.
* by Wolfram Gloger 2004
*/
#include
struct thread_st {
char *sp; /* stack pointer, can be 0 */
void (*func)(struct thread_st* st); /*
www.eeworm.com/read/402480/2321722
h malloc-machine.h
/* Basic platform-independent macro definitions for mutexes,
thread-specific data and parameters for malloc.
SGI threads (sprocs) version.
Copyright (C) 2004 Wolfram Gloger .
P
www.eeworm.com/read/395229/2443966
c td_ta_thr_iter.c
/* Iterate over a process's threads.
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper
www.eeworm.com/read/387285/2563125
txt changes.txt
2006-08-02 (ajalkane at gmail.com):
- Fixed overnet search to seed from only alive nodes instead of all
- Rearranged connecting code to be faster by utilizing all threads more efficiently
- New interf
www.eeworm.com/read/382594/2630164
mpc streams.mpc
// -*- MPC -*-
// streams.mpc,v 1.4 2005/11/26 03:13:13 ossama Exp
project(Answerer) : aceexe {
avoids += ace_for_tao
exename = Answerer
requires += threads
Source_Files {
Ans
www.eeworm.com/read/382594/2633408
mpb tmcast.mpb
// -*- MPC -*-
// tmcast.mpb,v 1.8 2005/11/26 03:13:13 ossama Exp
project: acelib, exceptions, threads {
avoids += ace_for_tao
after += TMCast
libs += ACE_TMCast
includes += $
www.eeworm.com/read/376060/2715802
svn-base ucplot.cpp.svn-base
// UCPLOT.CPP
#include "twl.h"
#include "threads.h"
#define CEXPORT extern "C" __declspec(dllexport)
class PlotThread: public Thread {
protected:
TFrameWindow *m_fw;
public:
PlotThread(char *
www.eeworm.com/read/376060/2715890
cpp ucplot.cpp
// UCPLOT.CPP
#include "twl.h"
#include "threads.h"
#define CEXPORT extern "C" __declspec(dllexport)
class PlotThread: public Thread {
protected:
TFrameWindow *m_fw;
public:
PlotThread(char *
www.eeworm.com/read/375427/2724475
java ex_18.java
// program to illustrate the use of threads
// based on Deitel text ex. 13.3
import java.io.*;
import java.util.*;
public class Ex_18
{
public static void main(String[] args)
{