ringbuffer.h
721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* my implementation of a ringbuffer.
* It maps a shared memory object twice directly following
* thus make it possible to read and write from any
* position within the buffer without the nasty wrap
* calculations.
* This is achived because the same memory region is mapped
* at the two addresses.
*/
#ifndef __RINGBUFFER_H__
#define __RINGBUFFER_H__
#include <sys/types.h>
#include "class.h"
#define ERBOVRFL 100
CLASS(Ringbuffer) {
char * shm_name; // shared memory identifier
char * buffer;
char * mirror;
size_t bsize;
size_t bused;
size_t bstart;
size_t bend;
};
ssize_t rbRead(Ringbuffer, int fd);
ssize_t rbWrite(Ringbuffer, int fd);
#endif // __RINGBUFFER_H__
// vim: set ts=4 sw=4: