X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bfbe7002a7ff4147e838e6d88841ed8e87683683..3d630a8a0429ae6e380bf1e002a6e55c21cd078f:/include/gras/process.h diff --git a/include/gras/process.h b/include/gras/process.h index 761647f193..130960f248 100644 --- a/include/gras/process.h +++ b/include/gras/process.h @@ -1,12 +1,11 @@ -/* $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 @@ -23,14 +22,14 @@ BEGIN_DECL * * Perform the various intialisations needed by gras. Each process must run it */ -gras_error_t gras_process_init(void); +xbt_error_t gras_process_init(void); /** * gras_process_exit: * * Frees the memory allocated by gras. Processes should run it */ -gras_error_t gras_process_exit(void); +xbt_error_t gras_process_exit(void); /****************************************************************************/ /* Manipulating User Data */ @@ -55,7 +54,7 @@ void gras_userdata_set(void *ud); * Malloc and set the data associated with the current process. */ -#define gras_userdata_new(type) (gras_userdata_set(malloc(sizeof(type))),gras_userdata_get()) +#define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get()) END_DECL