Ignore:
Timestamp:
Sep 21, 2018, 10:19:38 PM (6 years ago)
Author:
nicolas.van.phan@…
Message:

Hack to compile on both IOB and LETI for now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/cluster.c

    r529 r530  
    7171        cluster->x_size          = info->x_size;
    7272        cluster->y_size          = info->y_size;
     73    cluster->x_max           = info->x_max; // [FIXME]
     74        cluster->y_max           = info->y_max; // [FIXME]
    7375        cluster->io_cxy          = info->io_cxy;
    7476
     
    98100
    99101    // initialises DQDT
    100     cluster->dqdt_root_level = dqdt_init( info->x_size,
    101                                           info->y_size - 1, // [FIXME]
     102    cluster->dqdt_root_level = dqdt_init( info->x_max, // [FIXME]
     103                                          info->y_max, // [FIXME]
    102104                                          info->y_width ) - 1;
    103105
Note: See TracChangeset for help on using the changeset viewer.