KernRASSysTrace: Difference between revisions
Appearance
Created page with "==Synopsis== APIRET APIENTRY KernRASSysTrace(ULONG major,ULONG minor,PVOID buf, ULONG size); ==Description== This is the equivalence of the DevHlp_RASTrace function. ==Param..." |
No edit summary |
||
Line 15: | Line 15: | ||
size | size | ||
size of the buffer | size of the buffer | ||
==Comments== | |||
This is not explained in the PDD reference manual, but in the debug handbook IIRC. Warning: The buffer is assumed to be allocated on the task stack, not as a global variable or a VMAlloc'd memory area. | |||
[[Category:The OS/2 API Project]] | [[Category:The OS/2 API Project]] |
Revision as of 05:32, 6 June 2016
Synopsis
APIRET APIENTRY KernRASSysTrace(ULONG major,ULONG minor,PVOID buf, ULONG size);
Description
This is the equivalence of the DevHlp_RASTrace function.
Parameters
major
Major number of RAS event
minor
Minor number of RAS event
buf
buffer to be added to the RAS log
size
size of the buffer
Comments
This is not explained in the PDD reference manual, but in the debug handbook IIRC. Warning: The buffer is assumed to be allocated on the task stack, not as a global variable or a VMAlloc'd memory area.