source: soft/giet_vm/giet_libs/malloc.h @ 295

Last change on this file since 295 was 295, checked in by alain, 10 years ago

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
  • Property svn:executable set to *
File size: 688 bytes
Line 
1////////////////////////////////////////////////////////////////////////////
2// File     : malloc.h
3// Date     : 05/03/2013
4// Author   : Jean-Baptiste Bréjon
5// Copyright (c) UPMC-LIP6
6////////////////////////////////////////////////////////////////////////////
7
8#ifndef _MALLOC_H_
9#define _MALLOC_H_
10
11//#define DEBUG_MALLOC 1
12
13#include "giet_config.h"
14#include "spin_lock.h"
15
16//#define MALLOC_SELECTED 2
17
18void * malloc(unsigned int size);
19void free(void * ptr);
20
21
22#endif
23
24// Local Variables:
25// tab-width: 4
26// c-basic-offset: 4
27// c-file-offsets:((innamespace . 0)(inline-open . 0))
28// indent-tabs-mode: nil
29// End:
30// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
31
Note: See TracBrowser for help on using the repository browser.