aboutsummaryrefslogtreecommitdiffstats
path: root/src/ring.c
blob: 310ea64ddae3dd0d9dcbc6224414bc5c49d17425 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * ring.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

static char rcsid[] = "$Id$";

/*
 * $Log$
 * Revision 1.1  2008/02/08 15:06:42  james
 * *** empty log message ***
 *
 */

#include "project.h"

int ring_read(Ring *r,void *b,int n)
{
int red=0;

while (n--) {

if (!ring_read_one(r,b)) 
	break;

b++;
red++;
}

return red;
}

int ring_write(Ring *r,void *b,int n)
{
int writ=0;

while (n--) {

if (!ring_write_one(r,b)) 
	break;

b++;
writ++;
}

return writ;
}



Ring *ring_new(int n)
{
Ring *ret=(Ring *)malloc(sizeof(Ring));
ret->buf=(uint8_t *)malloc(n);
ret->size=n;
ret->wptr=ret->rptr=0;

return ret;
}