X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b151744b6c748217a9d9e9ebee8e0718eda81528..50ffa5ce8e4e6da54f7047c0921c460e2bf1c104:/include/gras/process.h diff --git a/include/gras/process.h b/include/gras/process.h index 272c4d2c1a..d318c9a0f6 100644 --- a/include/gras/process.h +++ b/include/gras/process.h @@ -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 */