Ignore:
Timestamp:
Mar 26, 2014, 6:44:44 PM (10 years ago)
Author:
alain
Message:

Introducing a major release, to suppoort the tsar_generic_leti platform
and the various (external or internal) peripherals configurations.
The map.xml format has been modified, in order to support the new
vci_iopic componentand a new policy for peripherals initialisation.
The IRQs are nom described in the XICU and IOPIC components
(and not anymore in the processors).
To enforce this major change, the map.xml file signature changed:
The signature value must be: 0xDACE2014

This new release has been tested on the tsar_generic_leti platform
for the following mappings:

  • 4c_4p_sort_leti
  • 4c_4p_sort_leti_ext
  • 4c_4p_transpose_leti
  • 4c_4p_transpose_leti_ext
  • 4c_1p_four_leti_ext
File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/barrier.h

    r258 r295  
    1313///////////////////////////////////////////////////////////////////////////////////
    1414
    15 typedef struct giet_barrier_s {
     15typedef struct giet_barrier_s
     16{
    1617    char name[32];      // barrier name
    1718    unsigned int init;  // total number of participants
     
    2324//////////////////////////////////////////////////////////////////////////////
    2425
    25 void barrier_init(giet_barrier_t * barrier, unsigned int value);
    26 void barrier_wait(giet_barrier_t * barrier);
     26void barrier_init( giet_barrier_t* barrier,
     27                   unsigned int    value );  // number of tasks 
     28
     29void barrier_wait( giet_barrier_t* barrier );
    2730
    2831#endif
Note: See TracChangeset for help on using the changeset viewer.