X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0aef0fac11f6ca97d59a6ff5e5123fa18e28629c..dc64a8555085de2a3cd75fa9540e60e91ac6ff34:/examples/msg/dht-chord/dht-chord.h diff --git a/examples/msg/dht-chord/dht-chord.h b/examples/msg/dht-chord/dht-chord.h index d2d17e6263..03514119f8 100644 --- a/examples/msg/dht-chord/dht-chord.h +++ b/examples/msg/dht-chord/dht-chord.h @@ -21,7 +21,6 @@ typedef struct s_finger { char mailbox[MAILBOX_NAME_SIZE]; // string representation of the id } s_finger_t; -typedef s_finger_t *finger_t; /* Node data. */ typedef struct s_node { @@ -70,7 +69,7 @@ int remote_get_predecessor(node_t node, int ask_to_id); int closest_preceding_node(node_t node, int id); void stabilize(node_t node); void notify(node_t node, int predecessor_candidate_id); -void remote_notify(node_t node, int notify_to, int predecessor_candidate_id); +void remote_notify(int notify_to, int predecessor_candidate_id); void fix_fingers(node_t node); void check_predecessor(node_t node); void random_lookup(node_t node);