Rename xmalloc() as malloc_or_panic(),
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 30 Jan 2005 07:49:18 +0000 (07:49 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 30 Jan 2005 07:49:18 +0000 (07:49 +0000)
xcalloc() as calloc_or_panic().

src/threads/malloc.c
src/threads/malloc.h

index 9c83e3d438f780199166c3c92aa0893aa842f98f..4f8675cf90572164dbf715a35cfe33fc876e1f24 100644 (file)
@@ -158,7 +158,7 @@ malloc (size_t size)
    kernel to panic in normal operation, so this function should
    only be used during kernel initialization. */
 void *
-xmalloc (size_t size) 
+malloc_or_panic (size_t size) 
 {
   void *p = malloc (size);
   if (p == NULL && size > 0)
@@ -192,7 +192,7 @@ calloc (size_t a, size_t b)
    kernel to panic in normal operation, so this function should
    only be used during kernel initialization. */
 void *
-xcalloc (size_t a, size_t b) 
+calloc_or_panic (size_t a, size_t b) 
 {
   void *p = calloc (a, b);
   if (p == NULL && a > 0 && b > 0)
index 4f0d0bf32f370557e0a13a0dfaa1f1f2f50df4cb..a07a7b06efc89d77127dfe3fae70b2de67a17838 100644 (file)
@@ -6,9 +6,9 @@
 
 void malloc_init (void);
 void *malloc (size_t) __attribute__ ((malloc));
-void *xmalloc (size_t) __attribute__ ((malloc));
+void *malloc_or_panic (size_t) __attribute__ ((malloc));
 void *calloc (size_t, size_t) __attribute__ ((malloc));
-void *xcalloc (size_t, size_t) __attribute__ ((malloc));
+void *calloc_or_panic (size_t, size_t) __attribute__ ((malloc));
 void free (void *);
 
 #endif /* threads/malloc.h */