void
build_hash_table_machine(ClusterConfiguration * c) { intleft= CLUSTER_HASH_TABLE_SIZE; int m = 0; int i = 0; unsignedint rnd[CLUSTER_MAX_MACHINES]; unsignedint mach[CLUSTER_MAX_MACHINES]; int total = CLUSTER_HASH_TABLE_SIZE;
for(i = 0; i < c->n_machines; i++){ int mine = total /(c->n_machines - i);
mach[i]= mine;
total -= mine; }