Copied missing files from the subversion repository.
[collectd.git] / src / libping / memory.c
1 /**
2  * MEMORY module
3  *
4  * Copyright (C) 2001 Jeffrey Fulmer <jdfulmer@armstrong.com>
5  * This file is part of LIBPING
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #include <stdio.h>
23 #include <memory.h>
24 #include <strings.h>
25
26 /**
27  * xrealloc    replaces realloc
28  */
29 void * 
30 xrealloc( void *object, size_t size )
31 {
32   void *new;
33   if( object )
34     new = realloc( object, size );
35   else
36     new = malloc( size );
37   if( !new ){
38     perror( "Memory exhausted" );
39     exit( 1 );
40   }
41   return new;
42 } /** end xrealloc **/
43
44 /**
45  * xmalloc     replaces malloc
46  */
47 void *
48 xmalloc( size_t size )
49 {
50   void *new  =  malloc( size );
51   if( !new ){
52     perror( "Memory exhausted" );
53     exit( 1 );
54   }
55   
56   return new;
57 } /** end of xmalloc **/
58
59 /**
60  * xcalloc     replaces calloc
61  */
62 void *
63 xcalloc( size_t num, size_t size )
64 {
65   void *new  =  xmalloc( num * size );
66   bzero( new, num * size );
67
68   return new;
69 } /** end of xcalloc **/
70
71
72