X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2539fff313cbd67c45b8490f7961e45e358d9ba2..134d9301d8336ed27bf6ccf13978bb432f08e163:/src/gras/Msg/msg_private.h diff --git a/src/gras/Msg/msg_private.h b/src/gras/Msg/msg_private.h index 4d4b5a6554..1739d8b4fc 100644 --- a/src/gras/Msg/msg_private.h +++ b/src/gras/Msg/msg_private.h @@ -4,11 +4,10 @@ /* module's private interface masked even to other parts of GRAS. */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2003, 2004 Martin Quinson. */ +/* 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_MESSAGE_PRIVATE_H #define GRAS_MESSAGE_PRIVATE_H @@ -25,10 +24,20 @@ #include "gras/virtu.h" #include "gras/messages.h" +#include "gras/timer.h" #include "gras_modinter.h" #include "gras/Msg/msg_interface.h" + +/** @brief Message instance */ +typedef struct { + gras_socket_t expeditor; + gras_msgtype_t type; + void *payload; + int payload_size; +} s_gras_msg_t, *gras_msg_t; + /** * gras_msgtype_t: * @@ -64,6 +73,23 @@ struct s_gras_cblist { xbt_dynar_t cbs; /* of gras_msg_cb_t */ }; +typedef struct s_gras_cblist gras_cblist_t; +void gras_cbl_free(void *); /* used to free the memory at the end */ void gras_cblist_free(void *cbl); + +/* ********* * + * * TIMER * * + * ********* */ +typedef struct { + double expiry; + double period; + void_f_void_t action; + int repeat; +} s_gras_timer_t, *gras_timer_t; + +/* returns 0 if it handled a timer, or the delay until next timer, or -1 if no armed timer */ +double gras_msg_timer_handle(void); + + #endif /* GRAS_MESSAGE_PRIVATE_H */