ListMustPushFrontL
Description
Aborting variant of ListPushFrontL. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying ListPushFrontL call succeeded; see ListPushFrontL for the post-state.
Failure
Does not return - aborts via LOG_FATAL / SysAbort when the underlying ListPushFrontL call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:281:
do { \
if (!ListPushFrontL((l), (lval))) { \
LOG_FATAL("ListMustPushFrontL failed"); \
} \
} while (0)
Last updated on