Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7d41431806b1ed0e9f104e8144553d1f8c4532cf
[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 #include <stdio.h>
17 #include <stdarg.h> /* va_list */
18    
19 #include "xbt/misc.h"
20 #include "xbt/asserts.h"
21   
22 SG_BEGIN_DECL()
23
24 /** @addtogroup XBT_syscall
25  *  @brief Malloc and associated functions, killing the program on error (with \ref XBT_ex)
26  *
27  * <center><table><tr><td><b>Top</b>    <td> [\ref index]::[\ref XBT_API]
28  *                <tr><td>Prev          <td>
29  *                <tr><td><b>Next</b>   <td> [\ref XBT_ex]            </table></center>
30  *  @{
31  */
32
33 #if defined(__GNUC__) || defined(DOXYGEN)
34 /** @brief Like strdup, but xbt_die() on error */
35 static inline char *xbt_strdup(const char *s) {
36   char *res = NULL;
37   if (s) {
38     res=strdup(s);
39     if (!res) 
40       xbt_die("memory allocation error");
41   } 
42   return res;
43 }
44 /** @brief Like malloc, but xbt_die() on error 
45     @hideinitializer */
46 static inline void *xbt_malloc(int n){
47   void *res=malloc(n);
48   if (!res)
49      xbt_die("Memory allocation failed");
50   return res;
51 }
52
53 /** @brief like malloc, but xbt_die() on error and memset data to 0
54     @hideinitializer */
55 static inline void *xbt_malloc0(int n) {
56   void *res=calloc(n,1);
57   if (!res)
58      xbt_die("Memory callocation failed");
59   return res;
60 }
61   
62 /** @brief like realloc, but xbt_die() on error 
63     @hideinitializer */
64 static inline void *xbt_realloc(void*p,int s){
65   void *res=res;
66   if (s) {
67     if (p) {
68       res=realloc(p,s);
69       if (!res) 
70         xbt_die("memory allocation error");
71     } else {
72       res=xbt_malloc(s);
73     }
74   } else {
75     if (p) {
76       free(p);
77     }
78   }
79   return res;
80 }
81 #else /* non __GNUC__  */
82 #  define xbt_strdup(s)    strdup(s)
83 #  define xbt_malloc(n)    malloc(n)
84 #  define xbt_malloc0(n)   calloc(n,1)
85 #  define xbt_realloc(p,s) realloc(p,s)
86 #endif /* __GNUC__ ? */
87
88 /** @brief like free
89     @hideinitializer */
90 #define xbt_free free /*nothing specific to do here. A poor valgrind replacement?*/
91 /*#define xbt_free_fct free * replacement with the guareenty of being a function  FIXME:KILLME*/
92    
93 /** @brief like calloc, but xbt_die() on error and don't memset to 0
94     @hideinitializer */
95 #define xbt_new(type, count)  ((type*)xbt_malloc (sizeof (type) * (count)))
96 /** @brief like calloc, but xbt_die() on error
97     @hideinitializer */
98 #define xbt_new0(type, count) ((type*)xbt_malloc0 (sizeof (type) * (count)))
99
100 /** @} */  
101
102 /* FIXME: better place? */
103 int vasprintf  (char **ptr, const char *fmt, va_list ap);
104 char *bprintf(const char*fmt, ...) _XBT_GNUC_PRINTF(1,2);
105   
106 SG_END_DECL()
107
108 #endif /* _XBT_SYSDEP_H */