Last change
on this file since 251 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
|
Rev | Line | |
---|
[228] | 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 | |
---|
[238] | 15 | typedef struct _giet_memspace_s |
---|
| 16 | { |
---|
[228] | 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.