Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Respect the coding style
authorChristophe Thiéry <christopho128@gmail.com>
Tue, 17 Apr 2012 15:44:17 +0000 (17:44 +0200)
committerChristophe Thiéry <christopho128@gmail.com>
Tue, 17 Apr 2012 15:44:17 +0000 (17:44 +0200)
examples/msg/chord/chord.c

index 4877119..d9f9995 100644 (file)
@@ -42,7 +42,7 @@ extern long int smx_total_comms;
 /**
  * Finger element.
  */
-typedef struct finger {
+typedef struct s_finger {
   int id;
   char mailbox[MAILBOX_NAME_SIZE]; // string representation of the id
 } s_finger_t, *finger_t;
@@ -50,7 +50,7 @@ typedef struct finger {
 /**
  * Node data.
  */
-typedef struct node {
+typedef struct s_node {
   int id;                                 // my id
   char mailbox[MAILBOX_NAME_SIZE];        // my mailbox name (string representation of the id)
   s_finger_t *fingers;                    // finger table, of size nb_bits (fingers[0] is my successor)
@@ -77,7 +77,7 @@ typedef enum {
 /**
  * Data attached with the tasks sent and received
  */
-typedef struct task_data {
+typedef struct s_task_data {
   e_task_type_t type;                     // type of task
   int request_id;                         // id paramater (used by some types of tasks)
   int request_finger;                     // finger parameter (used by some types of tasks)