Esempio n. 1
0
// 
// Resize each of the nurseries to the specified size.
//
void
resizeNurseriesFixed (W_ blocks)
{
    nat i;
    for (i = 0; i < n_capabilities; i++) {
        resizeNursery(&nurseries[i], blocks);
    }
}
Esempio n. 2
0
// 
// Resize each of the nurseries to the specified size.
//
static void
resizeNurseriesEach (W_ blocks)
{
    nat i;

    for (i = 0; i < n_nurseries; i++) {
        resizeNursery(&nurseries[i], blocks);
    }
}