Modifica

Syscall Struct

Definition

Represents a system call.

public struct Syscall
type Syscall = struct
Public Structure Syscall
Inheritance
Syscall

Properties

Name Description
EnterProcessor

Gets the index of the processor on which the system call was made, if available.

EnterTime

Gets the timestamp at which the syscall enter event was logged in the trace, if any.

ExitProcessor

Gets the index of the processor on which the system call returned, if available.

ExitTime

Gets the timestamp at which the syscall exit event was logged in the trace, if any.

FunctionAddress

Gets the address of the system call being invoked, if available.

ReturnValue

Gets the value returned by the system call function, if available.

ThreadId

Gets the ID of the thread executing when the system call was made.

Methods

Name Description
Create(SyscallEnterEvent, SyscallExitEvent, Nullable<Int32>)
CreateEnterOnly(SyscallEnterEvent, Nullable<Int32>)
CreateExitOnly(SyscallExitEvent, Nullable<Int32>)

Extension Methods

Name Description
GetThread(Syscall, IThreadDataSource)

Applies to