source: soft/giet_vm/libs/memspace.h @ 246

Last change on this file since 246 was 238, checked in by alain, 11 years ago

Major evolution to support physical addresses larger than 32 bits.
The map.xml format has been modified: the vsegs associated to schedulers
are now explicitely defined and mapped in the page tables.

File size: 625 bytes
Line 
1//////////////////////////////////////////////////////////////////////////////////
2// File     : memspace.h         
3// Date     : 12/02/2013
4// Author   : Quentin Meunier
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7
8#ifndef _MEMSPACE_H_
9#define _MEMSPACE_H_
10
11///////////////////////////////////////////////////////////////////////////////////
12//  memspace structure
13///////////////////////////////////////////////////////////////////////////////////
14
15typedef struct _giet_memspace_s
16{
17    void * buffer;
18    unsigned int size;
19} giet_memspace_t;
20
21
22#endif
23
Note: See TracBrowser for help on using the repository browser.