36 HANDLE hHandle = CreateThread(0, 0,
38 th, 0, (DWORD*)&dwThreadId);
40 ::CloseHandle(hHandle);
47 return hHandle ? 0 : EINVAL;
56 DWORD
R = WaitForSingleObject((HANDLE)th->
fHandle, INFINITE);
58 if ( (
R == WAIT_OBJECT_0) || (
R == WAIT_ABANDONED) ) {
62 if (
R == WAIT_TIMEOUT )
82 if (TerminateThread((HANDLE)th->
fHandle,0)) {
93 if (!
free) fprintf(stderr,
"CleanUpPush ***ERROR*** Routine=0\n");
102 if (!*
main)
return 1;
104 if (!
l->fRoutine) fprintf(stderr,
"CleanUpPop ***ERROR*** Routine=0\n");
105 if (exe &&
l->fRoutine) ((
void (*)(
void*))(
l->fRoutine))(
l->fArgument);
106 *
main =
l->fNext;
delete l;
124 return (
Long_t)::GetCurrentThreadId();
132 Warning(
"SetCancelOff",
"Not implemented on Win32");
141 Warning(
"SetCancelOn",
"Not implemented on Win32");
150 Warning(
"SetCancelAsynchronous",
"Not implemented on Win32");
159 Warning(
"SetCancelDeferred",
"Not implemented on Win32");
168 Warning(
"CancelPoint",
"Not implemented on Win32");
typedef void((*Func_t)())
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
static void * Function(void *ptr)
Static method which is called by the system thread function and which in turn calls the actual user f...
TWin32ThreadCleanUp(void **main, void *routine, void *arg)
TWin32ThreadCleanUp * fNext
virtual Int_t CancelPoint()
virtual Int_t Exit(void *ret)
Exit the thread.
virtual Int_t CleanUpPop(void **main, Int_t exe)
virtual Int_t SetCancelAsynchronous()
virtual Int_t Join(TThread *th, void **ret)
Wait for specified thread execution (if any) to complete (like pthread_join).
virtual Int_t SetCancelOn()
virtual Int_t Run(TThread *th)
Win32 threads – spawn new thread (like pthread_create).
virtual Int_t SetCancelOff()
virtual Long_t SelfId()
Return the current thread's ID.
virtual Int_t CleanUpPush(void **main, void *free, void *arg)
virtual Int_t SetCancelDeferred()
virtual Int_t CleanUp(void **main)
virtual Int_t Kill(TThread *th)
This is a somewhat dangerous function; it's not suggested to Stop() threads a lot.