CEL_CALLCAP_ENTER (Compact 2013)
3/28/2014
This structure signals the entry to a function during instrumented kernel profiling.
Syntax
typedef struct {
DWORD ThreadId;
DWORD ProcessId;
DWORD ProcAddress;
DWORD StackTop;
LARGE_INTEGER Counters[0];
} CEL_CALLCAP_ENTER, *PCEL_CALLCAP_ENTER;
Members
Term |
Definition |
---|---|
ThreadId |
Specifies the thread that is running. |
ProcessId |
Specifies the process that the thread is running in. This is the process inside which ProcAddress falls. |
ProcAddress |
Specifies the function that is being entered. |
StackTop |
Specifies the position in the call stack for the thread. |
Counters[0] |
Followed by an optional set of 64-bit signed counter values, the number determined by the size of the event. Usually omitted. |