CEL_THREAD_CREATE (Windows CE 5.0)

Send Feedback

This structure identifies a thread that as been created.

typedef struct __CEL_THREAD_CREATE {HANDLEhThread;HANDLEhProcess;HANDLE hModule;DWORD dwStartAddr;intnPriority;WCHARszName[0];} CEL_THREAD_CREATE, *PCEL_THREAD_CREATE;

Members

  • hThread
    Handle of the created thread. Corresponds to the handle returned from the CreateThread.
  • hProcess
    Handle of the process that created the thread.
  • hModule
    Handle of the freed module.
  • dwStartAddr
    Start address of the thread. This member is used in conjunction with the hModule or hProcess members and the information contained in the structure CEL_PROCESS_CREATE or CEL_MODULE_LOAD to find the thread name in a MAP file.
  • nPriority
    Base priority of the thread.
  • szName
    Optional null-terminated string containing the name of the thread that was created. Corresponds to the lpStartAddress parameter of CreateThread. The length of the name can be inferred from the length given in the event header, CEL_HEADER.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

CreateThread | CEL_HEADER | CEL_PROCESS_CREATE | CEL_MODULE_LOAD

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.