![]() |
This is Unofficial EPICS BASE Doxygen Site
|
#include <stddef.h>#include <stdlib.h>#include <stdarg.h>#include "errlog.h"#include "cantProceed.h"#include "epicsThread.h"#include "epicsStackTrace.h"
Include dependency graph for cantProceed.c:Go to the source code of this file.
Functions | |
| LIBCOM_API void * | callocMustSucceed (size_t count, size_t size, const char *msg) |
| A calloc() that never returns NULL. More... | |
| LIBCOM_API void * | mallocMustSucceed (size_t size, const char *msg) |
| A malloc() that never returns NULL. More... | |
| LIBCOM_API void | cantProceed (const char *msg,...) |
| LIBCOM_API void* callocMustSucceed | ( | size_t | count, |
| size_t | size, | ||
| const char * | errorMessage | ||
| ) |
A calloc() that never returns NULL.
| count | Number of objects. |
| size | Size of each object. |
| errorMessage | What this memory is needed for. |
Definition at line 22 of file cantProceed.c.
| LIBCOM_API void cantProceed | ( | const char * | msg, |
| ... | |||
| ) |
Definition at line 54 of file cantProceed.c.
| LIBCOM_API void* mallocMustSucceed | ( | size_t | size, |
| const char * | errorMessage | ||
| ) |
A malloc() that never returns NULL.
| size | Size of block to allocate. |
| errorMessage | What this memory is needed for. |
Definition at line 38 of file cantProceed.c.