HPlogo System Debug Reference Manual: HP 3000 MPE/iX Computer Systems > Chapter 3 System Debug Interface Commands and Intrinsics

RESETDUMP Intrinsic

» 

Technical documentation

Complete book in PDF
» Feedback

 » Table of Contents

 » Index

Disarms the Debug call that is made during abnormal process termination

Callable from: NM, CM

Syntax

   RESETDUMP;

Discussion

The RESETDUMP intrinsic disarms the Debug call that is made during abnormal process termination. If the Setdump feature was not previously armed by one of the Setdump intrinsics or commands, this intrinsic has no effect. Only the current process is affected. This intrinsic performs a function identical to the HPRESETDUMP intrinsic. The only difference is the means by which status information is returned.

Refer to the MPE XL Intrinsics Reference Manual (32650-90028) for additional discussion of this intrinsic.

Condition Codes

CCE

Request granted.

CCG

Abnormal process termination; Debug call is not currently enabled and remains disabled.

CCL

Not returned by this intrinsic.

Example

The following example is a code fragment from a Pascal program. It declares RESETDUMP as an intrinsic and then calls it.

   PROCEDURE call_resetdump;



      procedure RESETDUMP; intrinsic;



      BEGIN

         RESETDUMP;

      END;
Feedback to webmaster