X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e65bb0d9728e27ef89f57274e60f13e94820d5f9..02f9796851bd58a1e8769e257d572195f2ac07fd:/include/gras/process.h diff --git a/include/gras/process.h b/include/gras/process.h index 5c7047bbe2..5a6d6b38d3 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 @@ -36,28 +35,25 @@ xbt_error_t gras_process_exit(void); /* Manipulating User Data */ /****************************************************************************/ /** - * gras_userdata_get: - * - * Get the data associated with the current process. + * \brief Get the data associated with the current process. + * \ingroup GRAS_globals */ void *gras_userdata_get(void); /** - * gras_userdata_set: - * - * Set the data associated with the current process. + * \brief Set the data associated with the current process. + * \ingroup GRAS_globals */ void gras_userdata_set(void *ud); /** - * gras_userdata_new: - * - * Malloc and set the data associated with the current process. + * \brief Malloc and set the data associated with the current process. + * \ingroup GRAS_globals */ #define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get()) -END_DECL +END_DECL() #endif /* GRAS_PROCESS_H */