Ignore:
Timestamp:
Jan 7, 2016, 4:12:54 PM (8 years ago)
Author:
cfuguet
Message:
  • Support to have a single terminal (NB_TTY_CHANNEL = 1). In this case, the terminal is shared by the system and the applications.
  • Support platforms without NIC and CMA.
  • In the MMC driver, do not initialize the distributed driver structure in clusters without memory cache (IO clusters in the LETI platform).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_drivers/mmc_driver.c

    r630 r754  
    1010#include <tty0.h>
    1111#include <kernel_locks.h>
     12#include <kernel_malloc.h>
    1213#include <utils.h>
    1314
     
    8081            else
    8182            {
     83                // get heap_base & heap size
     84                unsigned int heap_base;
     85                unsigned int heap_size;
     86                if ( _get_heap_info( &heap_base, &heap_size, x, y ) ) continue;
     87
    8288                _mmc_distributed_lock[x][y] = _remote_malloc( sizeof(spin_lock_t), x, y );
    8389                _spin_lock_init( _mmc_distributed_lock[x][y] );
Note: See TracChangeset for help on using the changeset viewer.