double[] tab = new double[2048]; int i=0; while(booleen_volatile) { tab[i] = fonction_renvoyant_un_double(); i++; }
booleen_volatile
est modifié dans un autre thread). PEBKAC.
while(booleen_volatile || !booleen_volatile) { tab[i] = fonction_renvoyant_un_double(); i++; }
while(1)
est suffisant.
while(booleen_volatile || !booleen_volatile)
n'est pas équivalent à while(1)
.