X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/3903760236c30e3b5ace7a4eefac3a269d68957c..4ba76501152d51ccb5647018f3192c6096367d48:/bsd/sys/stackshot.h?ds=inline diff --git a/bsd/sys/stackshot.h b/bsd/sys/stackshot.h index dcd24eada..b5c00135c 100644 --- a/bsd/sys/stackshot.h +++ b/bsd/sys/stackshot.h @@ -35,17 +35,17 @@ typedef struct stackshot_config { /* Input options */ - int sc_pid; /* PID to trace, or -1 for the entire system */ - uint32_t sc_flags; /* Stackshot flags */ - uint64_t sc_delta_timestamp; /* Retrieve a delta stackshot of system state that has changed since this time */ + int sc_pid; /* PID to trace, or -1 for the entire system */ + uint32_t sc_flags; /* Stackshot flags */ + uint64_t sc_delta_timestamp; /* Retrieve a delta stackshot of system state that has changed since this time */ /* Stackshot results */ - uint64_t sc_buffer; /* Pointer to stackshot buffer */ - uint32_t sc_size; /* Length of the stackshot buffer */ + uint64_t sc_buffer; /* Pointer to stackshot buffer */ + uint32_t sc_size; /* Length of the stackshot buffer */ /* Internals */ - uint64_t sc_out_buffer_addr; /* Location where the kernel should copy the address of the newly mapped buffer in user space */ - uint64_t sc_out_size_addr; /* Location where the kernel should copy the size of the stackshot buffer */ + uint64_t sc_out_buffer_addr; /* Location where the kernel should copy the address of the newly mapped buffer in user space */ + uint64_t sc_out_size_addr; /* Location where the kernel should copy the size of the stackshot buffer */ } stackshot_config_t; #ifndef KERNEL