Last change
on this file since 801 was
722,
checked in by alain, 9 years ago
|
1) introduce the stdint.h file to define uint*_t and int*_t types.
2) introduce the bufio service in the mwmr library.
3) modify the fbf_cma system calls to support chbuf containing more than 2 buffers.
|
File size:
768 bytes
|
Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : stdint.h |
---|
3 | // Date : 22/05/2015 |
---|
4 | // Author : Alain Greiner |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _STDINT_H |
---|
9 | #define _STDINT_H |
---|
10 | |
---|
11 | #define uint8_t unsigned char |
---|
12 | #define uint16_t unsigned short |
---|
13 | #define uint32_t unsigned int |
---|
14 | #define uint64_t unsigned long long |
---|
15 | |
---|
16 | #define int8_t char |
---|
17 | #define int16_t short |
---|
18 | #define int32_t int |
---|
19 | #define int64_t long long |
---|
20 | |
---|
21 | #endif |
---|
22 | |
---|
23 | // Local Variables: |
---|
24 | // tab-width: 4 |
---|
25 | // c-basic-offset: 4 |
---|
26 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
27 | // indent-tabs-mode: nil |
---|
28 | // End: |
---|
29 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
Note: See
TracBrowser
for help on using the repository browser.