Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/_XBT_GNUC_FUNCTION/_XBT_FUNCTION/ (that's how to get __FUNCTION__ portably)
[simgrid.git] / include / xbt / sysdep.h
1 /* $Id$ */
2 /*  xbt/sysdep.h -- all system dependency                                   */
3 /*  no system header should be loaded out of this file so that we have only */
4 /*  one file to check when porting to another OS                            */
5
6 /* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef _XBT_SYSDEP_H
12 #define _XBT_SYSDEP_H
13
14 #include <string.h>
15 #include <stdlib.h> 
16    
17 #include "xbt/misc.h"
18 #include "xbt/error.h"
19   
20 BEGIN_DECL()
21 /** @addtogroup XBT_syscall
22  *  @{
23  */
24
25 #ifdef __GNUC__
26 /** @brief like strdup, but xbt_die() on error */
27 static inline char *xbt_strdup(const char *s) {
28   char *res = NULL;
29   if (s) {
30     res=strdup(s);
31     if (!res) 
32       xbt_die("memory allocation error");
33   } 
34   return res;
35 }
36 /** @brief like malloc, but xbt_die() on error 
37     @hideinitializer */
38 static inline void *xbt_malloc(int n){
39   void *res=malloc(n);
40   if (!res)
41      xbt_die("Memory allocation failed");
42   return res;
43 }
44
45 /** @brief like malloc, but xbt_die() on error and memset data to 0
46     @hideinitializer */
47 static inline void *xbt_malloc0(int n) {
48   void *res=calloc(n,1);
49   if (!res)
50      xbt_die("Memory callocation failed");
51   return res;
52 }
53   
54 /** @brief like realloc, but xbt_die() on error 
55     @hideinitializer */
56 static inline void *xbt_realloc(void*p,int s){
57   void *res=res;
58   if (s) {
59     if (p) {
60       res=realloc(p,s);
61       if (!res) 
62         xbt_die("memory allocation error");
63     } else {
64       res=xbt_malloc(s);
65     }
66   } else {
67     if (p) {
68       free(p);
69     }
70   }
71   return res;
72 }
73 #else /* non __GNUC__  */
74 #  define xbt_strdup(s)    strdup(s)
75 #  define xbt_malloc(n)    malloc(n)
76 #  define xbt_malloc0(n)   calloc(n,1)
77 #  define xbt_realloc(p,s) realloc(p,s)
78 #endif /* __GNUC__ ? */
79
80 /** @brief like free
81     @hideinitializer */
82 #define xbt_free free /*nothing specific to do here. A poor valgrind replacement?*/
83 /*#define xbt_free_fct free * replacement with the guareenty of being a function  FIXME:KILLME*/
84    
85 /** @brief like calloc, but xbt_die() on error and don't memset to 0
86     @hideinitializer */
87 #define xbt_new(type, count)  ((type*)xbt_malloc (sizeof (type) * (count)))
88 /** @brief like calloc, but xbt_die() on error
89     @hideinitializer */
90 #define xbt_new0(type, count) ((type*)xbt_malloc0 (sizeof (type) * (count)))
91
92 /** @} */  
93
94 END_DECL()
95
96 #endif /* _XBT_SYSDEP_H */