DosForceSystemDump: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
| Line 1: | Line 1: | ||
DosForceSystemDump initiates a stand-alone dump. The system terminates abruptly without shutdown as soon as the dump is inititated. | DosForceSystemDump initiates a stand-alone dump. The system terminates abruptly without shutdown as soon as the dump is inititated. | ||
==Syntax== | ==Syntax== | ||
| Line 8: | Line 8: | ||
==Return Code== | ==Return Code== | ||
;ulrc (APIRET) returns: DosForceSystemDump returns the following value: | |||
DosForceSystemDump returns the following value | |||
* 87 ERROR_INVALID_PARAMETER | * 87 ERROR_INVALID_PARAMETER | ||
Latest revision as of 17:20, 29 August 2021
DosForceSystemDump initiates a stand-alone dump. The system terminates abruptly without shutdown as soon as the dump is inititated.
Syntax
APIRET APIENTRY DosForceSystemDump (ULONG reserved)
Parameters
- reserved(ULONG) input
Return Code
- ulrc (APIRET) returns
- DosForceSystemDump returns the following value:
- 87 ERROR_INVALID_PARAMETER
Linkage Definition
IMPORTS DosForceSystemDump = DOSCALLS.444
Example Code
int main(int argc, char *argv[], char *envp[]){
APIRET rc;
rc=DosForceSystemDump(0L); /* will kill the system with a system dump */
/* does not return unless an error occurs */
printf("DosForceSystemDump returned %u\n",rc);
return rc;
}