Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
silence a winbuntu warning
[simgrid.git] / examples / msg / dht-chord / dht-chord.h
index d2d17e6..0351411 100644 (file)
@@ -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);