代码搜索:STARTING
找到约 9,113 项符合「STARTING」的源代码
代码结果 9,113
www.eeworm.com/read/306758/13738351
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/306757/13738454
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/306756/13738558
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/306754/13738635
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/306751/13738698
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/306747/13738965
mac main.mac
;------------------------------------------------------------------------------
;
; COPYRIGHT (C) 2000, 2001 Intel Corporation.
;
; This software as well as the software described in it is furni
www.eeworm.com/read/150349/5693758
readme
A template for driver writers to use as a starting point for writing Comm API
drivers.
www.eeworm.com/read/145471/5745921
h genhd.h
#ifndef _LINUX_GENHD_H
#define _LINUX_GENHD_H
/*
* genhd.h Copyright (C) 1992 Drew Eckhardt
* Generic hard disk header file by
* Drew Eckhardt
*
*
*/
#define EXTENDE
www.eeworm.com/read/144216/5752184
t join.t
use Thread;
sub foo {
print "In foo with args: @_\n";
return (7, 8, 9);
}
print "Starting thread\n";
$t = new Thread \&foo, qw(foo bar baz);
print "Joining with $t\n";
@results = $t->join();
www.eeworm.com/read/144216/5752188
t join2.t
use Thread;
sub foo {
print "In foo with args: @_\n";
return (7, 8, 9);
}
print "Starting thread\n";
$t = new Thread \&foo, qw(foo bar baz);
sleep 2;
print "Joining with $t\n";
@results = $t-