代码搜索:Threads
找到约 7,387 项符合「Threads」的源代码
代码结果 7,387
www.eeworm.com/read/290592/8473669
aix_5l_notes
[ From: Freddie M ]
Here is a howto for dmalloc using AIX 5L and xlc
For xlc compiler:
1. CC='xlc_r' ./configure --enable-threads
2. settings.h
ifndef LOCK_THREADS
#define LOCK_THREADS 1
www.eeworm.com/read/227427/14425714
aix_5l_notes
[ From: Freddie M ]
Here is a howto for dmalloc using AIX 5L and xlc
For xlc compiler:
1. CC='xlc_r' ./configure --enable-threads
2. settings.h
ifndef LOCK_THREADS
#define LOCK_THREADS 1
www.eeworm.com/read/375190/2725808
c thread_leak_test.c
#ifndef GC_THREADS
# define GC_THREADS
#endif /* GC_THREADS */
#include "leak_detector.h"
#include
#include
void * test(void * arg) {
int *p[10];
int i;
GC_find_lea
www.eeworm.com/read/356534/10225130
h alloc_save_load_field_thread.h
//interface for parallel data saving with threads
#include //for threads
#include
#include "Load_Save_File_Data.h"
#ifndef _Struct1_
////////////////////////////////////
www.eeworm.com/read/243813/12915648
java testrunnable.java
// TestRunnable.java: Define threads using the Runnable interface
public class TestRunnable
{
// Main method
public static void main(String[] args)
{
// Create threads
Thread pri
www.eeworm.com/read/139738/13137019
java alarm.java
package nachos.threads;
import nachos.machine.*;
/**
* Uses the hardware timer to provide preemption, and to allow threads to sleep
* until a certain time.
*/
public class Alarm {
/**
*
www.eeworm.com/read/316204/13528452
pas comm32.pas
unit Comm32;
//
// This Communications Component is implemented using separate Read and Write
// threads. Messages from the threads are posted to the Comm control which is
// an invisible window.
www.eeworm.com/read/158402/11620742
java alarm.java
package nachos.threads;
import nachos.machine.*;
/**
* Uses the hardware timer to provide preemption, and to allow threads to sleep
* until a certain time.
*/
public class Alarm {
/**
*
www.eeworm.com/read/337623/12355624
txt 新建 文本文档.txt
C:\>jdb
Initializing jdb...
> ?
** command list **
run [class [args]] -- start execution of application's main class
threads [threadgroup] -- list threads
thread
www.eeworm.com/read/219805/14863078
cc threadtest.cc
// threadtest.cc
// Simple test case for the threads assignment.
//
// Create two threads, and have them context switch
// back and forth between themselves by calling Thread::Yield,
// to