#include <kernel_types.h>#include <BlockNumbers.h>#include <signaldata/SystemError.hpp>Include dependency graph for SystemError.cpp:

Go to the source code of this file.
Functions | |
| bool | printSYSTEM_ERROR (FILE *output, const Uint32 *theData, Uint32 len, Uint16 receiverBlockNo) |
| bool printSYSTEM_ERROR | ( | FILE * | output, | |
| const Uint32 * | theData, | |||
| Uint32 | len, | |||
| Uint16 | receiverBlockNo | |||
| ) |
For printing
Definition at line 23 of file SystemError.cpp.
References sig().
00024 { 00025 00026 const SystemError * const sig = (SystemError *) theData; 00027 00028 fprintf(output, "errorRef: H\'%.8x\n", 00029 sig->errorRef); 00030 fprintf(output, "errorCode: %d\n", 00031 sig->errorCode); 00032 fprintf(output, "data1: H\'%.8x\n", 00033 sig->data1); 00034 fprintf(output, "data2: H\'%.8x\n", 00035 sig->data2); 00036 00037 return true; 00038 }
Here is the call graph for this function:

1.4.7

