Last change
on this file since 234 was
228,
checked in by meunier, 12 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:
664 bytes
|
Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : utils.h |
---|
3 | // Date : 01/08/2012 |
---|
4 | // Author : alain greiner mohamed karaoui |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _UTILS_H |
---|
9 | #define _UTILS_H |
---|
10 | |
---|
11 | void * memcpy(void * dst, void * src, unsigned int size); |
---|
12 | void * memset(void * dst, int s, unsigned int count); |
---|
13 | |
---|
14 | #endif |
---|
15 | |
---|
16 | // Local Variables: |
---|
17 | // tab-width: 4 |
---|
18 | // c-basic-offset: 4 |
---|
19 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
20 | // indent-tabs-mode: nil |
---|
21 | // End: |
---|
22 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.