Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Getting rid of useless field
[simgrid.git] / src / portable.h
index 9a6acb3..2afe77c 100644 (file)
@@ -34,6 +34,7 @@
 #  include <netinet/tcp.h>  /* TCP_NODELAY */
 #  include <netdb.h>        /* getprotobyname() */
 #  include <arpa/inet.h>    /* inet_ntoa() */
+#  include <sys/types.h>    /* sometimes required for fd_set */
 # endif
 
 #ifdef HAVE_WINSOCK2_H
@@ -170,4 +171,17 @@ extern int vasnprintf(char **ptr, size_t str_m, const char *fmt, va_list ap);
 #  define PRINTF_STR(a) (a)?:"(null)"
 #endif
 
+/*
+ * What we need to extract the backtrace in exception handling code
+ */
+#ifdef HAVE_EXECINFO_H
+#  include <execinfo.h>
+#endif
+
+/*
+ * Some debugging functions. Can't we find a better place for this??
+ */
+void hexa_print(const char*name, unsigned char *data, int size);
+const char *hexa_str(unsigned char *data, int size);
+
 #endif /* GRAS_PORTABLE_H */