X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5787a5c839c1f49fec942290449d18b72b036d98..04cb8833befbe07b6b94ff0cae98bc17b78724e3:/examples/msg/dht-kademlia/task.h diff --git a/examples/msg/dht-kademlia/task.h b/examples/msg/dht-kademlia/task.h index a7cd143d91..cca5e2928b 100644 --- a/examples/msg/dht-kademlia/task.h +++ b/examples/msg/dht-kademlia/task.h @@ -29,7 +29,9 @@ typedef struct s_task_data { answer_t answer; //Answer to the request made, if needed. char *answer_to; // mailbox to send the answer to (if not an answer). const char *issuer_host_name; // used for logging -} s_task_data_t, *task_data_t; +} s_task_data_t; + +typedef s_task_data_t *task_data_t; //Task handling functions msg_task_t task_new_find_node(unsigned int sender_id, unsigned int destination_id, char *mailbox, const char *hostname);