summaryrefslogtreecommitdiffstats
path: root/polyp/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/xmalloc.c')
-rw-r--r--polyp/xmalloc.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/polyp/xmalloc.c b/polyp/xmalloc.c
index 47f46bbe..709e46e5 100644
--- a/polyp/xmalloc.c
+++ b/polyp/xmalloc.c
@@ -30,19 +30,22 @@
#include "memory.h"
#include "util.h"
-#define MAX_ALLOC_SIZE (1024*1024*20)
+/* Make sure not to allocate more than this much memory. */
+#define MAX_ALLOC_SIZE (1024*1024*20) /* 20MB */
-#undef malloc
-#undef free
-#undef realloc
-#undef strndup
-#undef strdup
+/* #undef malloc */
+/* #undef free */
+/* #undef realloc */
+/* #undef strndup */
+/* #undef strdup */
+/** called in case of an OOM situation. Prints an error message and
+ * exits */
static void oom(void) {
static const char e[] = "Not enough memory\n";
- pa_loop_write(2, e, sizeof(e)-1);
+ pa_loop_write(STDERR_FILENO, e, sizeof(e)-1);
raise(SIGQUIT);
- exit(1);
+ _exit(1);
}
void* pa_xmalloc(size_t size) {