Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Some work to get it ansi compliant, still much to doo
[simgrid.git] / include / xbt / sysdep.h
1 /* $Id$ */
2
3 /* gras/sysdep.h -- all system dependency                                   */
4 /*  no system header should be loaded out of this file so that we have only */
5 /*  one file to check when porting to another OS                            */
6
7 /* Authors: Martin Quinson                                                  */
8 /* Copyright (C) 2004 the OURAGAN project.                                  */
9
10 /* This program is free software; you can redistribute it and/or modify it
11    under the terms of the license (GNU LGPL) which comes with this package. */
12
13
14 #ifndef _GRAS_SYSDEP_H
15 #define _GRAS_SYSDEP_H
16
17 #include <string.h> /* Included directly for speed */
18
19 #include <time.h> /* FIXME: remove */
20 #include <unistd.h> /* FIXME: remove */
21
22 #ifdef  __cplusplus
23 extern "C" 
24 #endif
25
26 void* gras_malloc  (long int bytes);
27 void* gras_malloc0 (long int bytes);
28 void* gras_realloc (void  *memory, long int bytes);
29 void  gras_free    (void  *memory);
30
31 #define gras_new(type, count)  ((type*)gras_malloc (sizeof (type) * (count)))
32 #define gras_new0(type, count) ((type*)gras_malloc0 (sizeof (type) * (count)))
33
34 /* Attributes are only in recent versions of GCC */
35
36 #if     __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
37 # define _GRAS_GNUC_PRINTF( format_idx, arg_idx )    \
38            __attribute__((__format__ (__printf__, format_idx, arg_idx)))
39 # define _GRAS_GNUC_SCANF( format_idx, arg_idx )     \
40                __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
41 # define _GRAS_GNUC_FORMAT( arg_idx )                \
42                    __attribute__((__format_arg__ (arg_idx)))
43 # define _GRAS_GNUC_NORETURN __attribute__((__noreturn__))
44
45 #else   /* !__GNUC__ */
46 # define _GRAS_GNUC_PRINTF( format_idx, arg_idx )
47 # define _GRAS_GNUC_SCANF( format_idx, arg_idx )
48 # define _GRAS_GNUC_FORMAT( arg_idx )
49 # define _GRAS_GNUC_NORETURN
50
51 #endif  /* !__GNUC__ */
52
53 /* inline and __FUNCTION__ are only in GCC when -ansi is of */
54
55 #if defined(__GNUC__) && ! defined(__STRICT_ANSI__)
56
57 # define _GRAS_GNUC_FUNCTION __FUNCTION__
58 # define _GRAS_INLINE inline
59 #else
60 # define _GRAS_GNUC_FUNCTION "function"
61 # define _GRAS_INLINE 
62 #endif
63
64
65 void gras_abort(void) _GRAS_GNUC_NORETURN;
66
67 /* FIXME: This is a very good candidate to rewrite (along with a proper string stuff) 
68    but I'm too lazy right now, so copy the definition */
69 long int strtol(const char *nptr, char **endptr, int base);
70 double strtod(const char *nptr, char **endptr);
71 int atoi(const char *nptr);
72
73
74    
75 #ifdef  __cplusplus
76 }
77 #endif
78
79 #endif /* _GRAS_SYSDEP_H */