[ Previous | Next | Contents | Home | Search ]
AIX Version 4.3 Understanding the Diagnostic Subsystem for AIX

Example {DEVICE}_INPUT_PARAMS.H:
TU specific inputs

/*
 *   COMPONENT_NAME: TU_DEVICE
 *
 *   FUNCTIONS: SAMPLE TU Input Parameters Header File
 *
 */
  
#ifndef _h_device_input_params
#define _h_device_input_params
  
/*
 * INPUT_DATA structure and related definitions follow.
 *
 * These structures are used to provide detailed input data information
 * for some of the test units. This data is only used in manufacturing
 * or other special case test areas.
 */
  
/********************************************************/
/* The following structures are examples. Modify        */
/* as needed.                                           */
/********************************************************/
  
typedef struct {
      unsigned long int         mfg_mode;
} TU_SPECIFIC_INPUT;
  
/* The following is required by the <diag/tucb.h> header */
#define INPUT_DATA TU_SPECIFIC_INPUT
  
#endif

[ Previous | Next | Contents | Home | Search ]