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

Last change on this file since 230 was 228, checked in by meunier, 11 years ago

Added support for memspaces and const.
Added an interrupt masking to the "giet_context_switch" syscall
Corrected two bugs in boot/boot_init.c (one minor and one regarding barriers initialization)
Reformatted the code in all files.

File size: 623 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 _srl_memspace_s {
16    void * buffer;
17    unsigned int size;
18} giet_memspace_t;
19
20
21#endif
22
Note: See TracBrowser for help on using the repository browser.