EvmEventDump - Dumps an event in displayable form
#include <evm/evm.h> #include <stdio.h>
EvmStatus_t EvmEventDump(
EvmConstEvent_t event,
FILE *fd );
The event for which a formatted dump is requested. All
data items and variables contained in the event are displayed.
Points to a FILE structure where the formatted
event should be dumped. This is usually stdout or stderr.
The EvmEventDump() routine dumps an event in display format.
All data items and variables contained in the event
are displayed.
The format of the output is not guaranteed to be consistent
between releases, so it should not be relied on for
any standard processing.
None
The operation was completed without error. One of the
arguments to the function was invalid. A value in a
structure member is invalid. An operation failed because
an attempt to acquire heap memory failed.
None
EVM Support Library (libevm.so, libevm.a)
None
Commands: evmshow(1)
Routines: EvmEventFormat(3)
Files: kevm(7)
Event Management: EVM(5)
EVM Events: EvmEvent(5)
EvmEventDump(3)
[ Back ] |