Ignore:
Timestamp:
Mar 8, 2001, 8:28:45 PM (24 years ago)
Author:
umoeller
Message:

Misc. changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/threads.h

    r41 r44  
    4747            void*   pThreadFunc;    // as passed to thrCreate, really a PTHREADFUNC
    4848            PBOOL   pfRunning;      // as passed to thrCreate
     49            const char *pcszThreadName; // as passed to thrCreate
    4950            ULONG   flFlags;        // as passed to thrCreate
    5051            ULONG   ulData;         // as passed to thrCreate
     
    7172                    PTHREADFUNC pfn,
    7273                    PBOOL pfRunning,
     74                    const char *pcszThreadName,
    7375                    ULONG flFlags,
    7476                    ULONG ulData);
     
    7678    ULONG thrRunSync(HAB hab,
    7779                     PTHREADFUNC pfn,
     80                     const char *pcszThreadName,
    7881                     ULONG ulData);
     82
     83    PTHREADINFO thrListThreads(PULONG pcThreads);
     84
     85    BOOL thrFindThread(PTHREADINFO pti,
     86                       ULONG tid);
    7987
    8088    BOOL thrClose(PTHREADINFO pti);
Note: See TracChangeset for help on using the changeset viewer.