代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/283639/4076345
java threadpool.java
package com.brackeen.javagamebook.util;
import java.util.LinkedList;
/**
A thread pool is a group of a limited number of threads that
are used to execute tasks.
*/
public class ThreadP
www.eeworm.com/read/440906/1784631
java inheritablethreadlocal.java
/* InheritableThreadLocal -- a ThreadLocal which inherits values across threads
Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is
www.eeworm.com/read/438676/1823775
c test_pfs.c
/*
test bench for rmpfs.c functions
to use threads:
-include 'librmpthreadw/librmpthreadw.a' to the lib_list in the Makefile
-export COMPILKIND += withthreads
*/
#include
#include
www.eeworm.com/read/430520/1921237
h os_pthread.h
// -*- C++ -*-
//=============================================================================
/**
* @file os_pthread.h
*
* threads
*
* $Id: os_pthread.h 79060 2007-07-30 07:15:59Z johnnyw
www.eeworm.com/read/411419/2188473
s powerpc_mach.s
/* powerpc_mach.s -- assembly support. */
/*
* QuickThreads -- Threads-building toolkit.
* Copyright (c) 1993 by David Keppel
*
* Permission to use, copy, modify and distribute this software and
www.eeworm.com/read/411046/2194898
h pthread.h
/* This is the POSIX thread API (POSIX 1003).
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright (C) 1998
*
* This library is free software; you can redistribute it and/or
*
www.eeworm.com/read/411046/2194901
c condvar.c
/*
* condvar.c
*
* Description:
* This translation unit implements condition variables and their primitives.
*
* Pthreads-win32 - POSIX Threads Library for Win32
* Copyright (C) 1998
*
www.eeworm.com/read/407641/2260858
c test_pfs.c
/*
test bench for rmpfs.c functions
to use threads:
-include 'librmpthreadw/librmpthreadw.a' to the lib_list in the Makefile
-export COMPILKIND += withthreads
*/
#include
#include
www.eeworm.com/read/402296/2325966
java ping.java
/*
* @(#)Ping.java 1.2 01/12/13
* Connect to each of a list of hosts and measure the time required to complete
* the connection. This example uses a selector and two additional threads in
* order
www.eeworm.com/read/388227/2551323
java threadtest.java
package org.nfunk.jepexamples;
/**
* This class tests the thread safety of the JEP package with a brute force
* approach. 1000 threads are started, and each one invokes the evaluate method.