Ignore:
Timestamp:
Jan 31, 2014, 4:10:30 PM (10 years ago)
Author:
cfuguet
Message:

Removing the GIET_MONO_TTY variable on the giet_config.h
file. All the tests on this variable as been replaced by
NB_TTY_CHANNELS == 1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branch/giet_vm_ioc_drivers/giet_boot/boot.c

    r283 r285  
    11691169    unsigned int alloc_tim_channel[X_SIZE*Y_SIZE]; // user TIMER allocators
    11701170
    1171     if (!GIET_MONO_TTY) alloc_tty_channel++;
     1171    if (NB_TTY_CHANNELS > 1) alloc_tty_channel++;
    11721172
    11731173    /////////////////////////////////////////////////////////////////////////
     
    13721372                }
    13731373                ctx_tty = alloc_tty_channel;
    1374                 if (!GIET_MONO_TTY) alloc_tty_channel++;
     1374                if (NB_TTY_CHANNELS > 1) alloc_tty_channel++;
    13751375            }
    13761376            // ctx_nic : NIC channel global index provided by the global allocator
Note: See TracChangeset for help on using the changeset viewer.