Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add model Reno, NewReno and Tahoe with ns3
[simgrid.git] / include / gras.h
index fb941a4..5e1f083 100644 (file)
@@ -1,53 +1,28 @@
-/* $Id$ */
-
 /* gras.h - Public interface to the GRAS                                    */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003 the OURAGAN project.                                  */
+/* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
+ * 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 GRAS_H
 #define GRAS_H
 
-/* Oli's macro */
-#ifndef GS_FAILURE_CONTEXT
-#  define GS_FAILURE_CONTEXT
-#endif /* GS_FAILURE_CONTEXT */
-
-#define GS_FAILURE(str) \
-     (fprintf(stderr, "FAILURE: %s(%s:%d)" GS_FAILURE_CONTEXT "%s\n", __func__, __FILE__, __LINE__, (str)), \
-      abort())
-
-#define aligned(v, a) (((v) + (a - 1)) & ~(a - 1))
-#define max(a, b) (((a) > (b))?(a):(b))
-#define min(a, b) (((a) < (b))?(a):(b))
-
-#define TRUE  1
-#define FALSE 0
-
-/* end of Oli's cruft */
-
-#include <gras/error.h>
-#include <gras/log.h>
+#include <xbt.h>                /* our toolbox */
+#include <xbt/ex.h>             /* There's a whole bunch of exception handling in GRAS */
 
+#include <gras/process.h>
 #include <gras/module.h>
+#include <gras/virtu.h>
+#include <gras/emul.h>
 
-#include <gras/dynar.h>
-#include <gras/dict.h>
-
-#include <gras/config.h>
-
-#include <gras/core.h>
+#include <gras/transport.h>
 #include <gras/datadesc.h>
-#include <gras/socket.h>
 #include <gras/messages.h>
+#include <gras/timer.h>
 
-#include <gras/data_description.h>
-#include <gras/dd_type_bag.h>
-
-#include <gras/modules/base.h>
-#include <gras/modules/bandwidth.h>
+XBT_PUBLIC(void) gras_init(int *argc, char **argv);
+XBT_PUBLIC(void) gras_exit(void);
 
-#endif /* GRAS_H */
+#endif                          /* GRAS_H */