got mmap oss output working

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@20 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-06-16 00:05:30 +00:00
parent a8f788111c
commit 4b86ff0e6c
17 changed files with 607 additions and 112 deletions

View file

@ -11,7 +11,6 @@ struct memblock {
unsigned ref;
size_t length;
void *data;
struct timeval stamp;
};
struct memchunk {
@ -28,9 +27,6 @@ struct memblock* memblock_ref(struct memblock*b);
void memblock_unref_fixed(struct memblock*b);
void memblock_stamp(struct memblock*b);
uint32_t memblock_age(struct memblock*b);
#define memblock_assert_exclusive(b) assert((b)->ref == 1)
extern unsigned n_blocks;