Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
brain-dead hack
[simgrid.git] / include / gras / process.h
index 272c4d2..d318c9a 100644 (file)
@@ -1,19 +1,18 @@
-/* $Id$                     */
+/* $Id$ */
 
-/* gras/core.h - Unsorted part of the GRAS public interface                 */
+/* gras/process.h - Manipulating data related to an host.                   */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003,2004 the OURAGAN project.                             */
+/* Copyright (c) 2003, 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 GRAS_PROCESS_H
 #define GRAS_PROCESS_H
 
 #include "xbt/misc.h" /* BEGIN_DECL */
 
-BEGIN_DECL
+BEGIN_DECL()
 
 /* **************************************************************************
  * Initializing the processes
@@ -55,9 +54,9 @@ void gras_userdata_set(void *ud);
  * Malloc and set the data associated with the current process.
  */
 
-#define gras_userdata_new(type) (gras_userdata_set(gras_new0(type,1)),gras_userdata_get())
+#define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get())
 
-END_DECL
+END_DECL()
 
 #endif /* GRAS_PROCESS_H */