Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a new function: MSG_task_get_with_timeout. That should be very convenient to...
[simgrid.git] / include / xbt.h
index 38f65ef..08d5228 100644 (file)
@@ -1,33 +1,29 @@
 /* $Id$ */
 
-/* gros.h - Public interface to the GROS (gras's toolbox)                   */
+/* xbt.h - Public interface to the xbt (gras's toolbox)                   */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2004 the OURAGAN project.                                  */
+/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
 
 /* This program is free software; you can redistribute it and/or modify it
  under the terms of the license (GNU LGPL) which comes with this package. */
* under the terms of the license (GNU LGPL) which comes with this package. */
 
-#ifndef GROS_H
-#define GROS_H
+#ifndef xbt_H
+#define xbt_H
 
-#define max(a, b) (((a) > (b))?(a):(b))
-#define min(a, b) (((a) < (b))?(a):(b))
+#include <xbt/misc.h>
+#include <xbt/sysdep.h>
 
-#define TRUE  1
-#define FALSE 0
+#include <xbt/error.h>
+#include <xbt/log.h>
 
-#define GRAS_MAX_CHANNEL 10 /* FIXME: killme */
+#include <xbt/module.h>
 
-#include <gros/error.h>
-#include <gros/log.h>
+#include <xbt/dynar.h>
+#include <xbt/dict.h>
+#include <xbt/set.h>
+#include <xbt/swag.h>
+#include <xbt/heap.h>
 
-#include <gros/module.h>
+#include <xbt/config.h>
 
-#include <gros/dynar.h>
-#include <gros/dict.h>
-#include <gros/set.h>
-
-#include <gros/config.h>
-
-#endif /* GROS_H */
+#endif /* xbt_H */