Changeset 44 for trunk/include/helpers/threads.h
- Timestamp:
- Mar 8, 2001, 8:28:45 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/threads.h
r41 r44 47 47 void* pThreadFunc; // as passed to thrCreate, really a PTHREADFUNC 48 48 PBOOL pfRunning; // as passed to thrCreate 49 const char *pcszThreadName; // as passed to thrCreate 49 50 ULONG flFlags; // as passed to thrCreate 50 51 ULONG ulData; // as passed to thrCreate … … 71 72 PTHREADFUNC pfn, 72 73 PBOOL pfRunning, 74 const char *pcszThreadName, 73 75 ULONG flFlags, 74 76 ULONG ulData); … … 76 78 ULONG thrRunSync(HAB hab, 77 79 PTHREADFUNC pfn, 80 const char *pcszThreadName, 78 81 ULONG ulData); 82 83 PTHREADINFO thrListThreads(PULONG pcThreads); 84 85 BOOL thrFindThread(PTHREADINFO pti, 86 ULONG tid); 79 87 80 88 BOOL thrClose(PTHREADINFO pti);
Note:
See TracChangeset
for help on using the changeset viewer.