IDIXEINF – Obtain event information

Format


#include "idixhfmt.h"

int IDIXEINF(UFM *p_ufm, int event_no);

General description

The specified UFM data area is populated with information applicable to the specified event number.

IDIXEINF() is functionally equivalent to the Fault Analyzer REXX command "IDIEventInfo."

Returned value

IDIXEINF() returns zero if the information was retrieved successfully.

IDIXEINF() returns non-zero if no information is available for the specified event number. An explanation of the error is written to the IDITRACE DDname.

Example


#include "idixhfmt.h"

UFM ufm;
int rc;
rc = IDIXEINF(&ufm, 1);
If (!rc) {  // Successful completion
  …
}