aboutsummaryrefslogtreecommitdiffstats
path: root/src/ring.c
blob: ccd97edc426f2d281e64ce4f46b09688c30a2148 (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
63
64
65
66
67
68
69
70
71
72
73
/*
 * ring.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

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

/*
 * $Log$
 * Revision 1.3  2008/02/13 09:12:21  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/12 22:36:46  james
 * *** empty log message ***
 *
 * 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->ring = (uint8_t *) malloc (n);
  ret->size = n;
  ret->wptr = ret->rptr = 0;

  return ret;
}