en:docs:fapi:dossystrace

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:dossystrace [2021/12/15 07:57] – created prokusheven:docs:fapi:dossystrace [2021/12/16 03:16] (current) prokushev
Line 1: Line 1:
-====== Dos16SysTrace ======+{{page>en:templates:fapiint}} 
 + 
 +====== DosSysTrace ======
  
 ===== Brief ===== ===== Brief =====
Line 8: Line 10:
 ===== Syntax ===== ===== Syntax =====
 <code c> <code c>
- APIRET16 APIENTRY16 Dos16SysTrace+ APIRET APIENTRY16 DosSysTrace
         (USHORT major, USHORT cBuffer, USHORT minor, PCHAR pBuffer)          (USHORT major, USHORT cBuffer, USHORT minor, PCHAR pBuffer) 
 </code> </code>
Line 25: Line 27:
 ulrc (APIRET) returns ulrc (APIRET) returns
  
-Dos16SysTrace returns one of the following values+DosSysTrace returns one of the following values
  
   * 0  NO_ERROR   * 0  NO_ERROR
Line 37: Line 39:
   * Optional System Data Controlled by the TRACE command   * Optional System Data Controlled by the TRACE command
   * Optional User Data Specified by the pBuffer parameter    * Optional User Data Specified by the pBuffer parameter 
 +
 +To check is tracing enabled use [[DosGetInfoSeg]]. GlobalInfoSeg contains 256bit flags area. See [[DosGetInfoSeg]] for more info.
  
 ===== Example Code ===== ===== Example Code =====
Line 42: Line 46:
 <code c> <code c>
 int main(int argc, char *argv[], char *envp[]){ int main(int argc, char *argv[], char *envp[]){
-   APIRET16 rc=0;          /* default return code */+   APIRET rc=0;          /* default return code */
    USHORT major=255;       /* default major code */    USHORT major=255;       /* default major code */
    USHORT minor=1;         /* default minor code */    USHORT minor=1;         /* default minor code */
Line 68: Line 72:
  
  
-* [[DosDumpProcess]] +  * [[DosDumpProcess]] 
-* [[DosForceSystemDump]]+  * [[DosForceSystemDump]] 
 + 
 +{{page>en:templates:fapi}}