代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/176730/9486203
c thread4.c
#include
#include
#include
#include
#include
void *thread_function(void *arg);
sem_t bin_sem;
#define WORK_SIZE 1024
char work_area[WORK_SIZ
www.eeworm.com/read/176730/9486206
c thread8.c
#include
#include
#include
#include
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread;
void *thread_result;
res
www.eeworm.com/read/176279/9509824
pas thread_reg.pas
unit Thread_Reg;
interface
uses
Classes;
type
Reg_Thread = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end;
implementati
www.eeworm.com/read/176279/9509831
pas thread_unit.pas
unit thread_Unit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
IdHTTP,
www.eeworm.com/read/176279/9509850
pas thread_sclin.pas
unit thread_sclin;
interface
uses
Classes;
type
Sclin_Thread = class(TThread)
FURL:string;
private
{ Private declarations }
function IfErrorReport(str_url:string):integ
www.eeworm.com/read/176279/9509895
dcu thread_sclin.dcu
www.eeworm.com/read/176279/9509906
dcu thread_reg.dcu
www.eeworm.com/read/176279/9509907
dcu thread_unit.dcu
www.eeworm.com/read/372449/9510236
c thread9.c
#include
#include
#include
#include
#define NUM_THREADS 6
void *thread_function(void *arg);
int main() {
int res;
pthread_t a_thread[NUM_THREADS]
www.eeworm.com/read/372449/9510239
c thread5.c
#include
#include
#include
#include
#include
void *thread_function(void *arg);
pthread_mutex_t work_mutex; /* protects both work_area and tim