You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
342 B
C
17 lines
342 B
C
#include <stdlib.h>
|
|
#include <sys/mman.h>
|
|
#include "byte.h"
|
|
#include "iob_internal.h"
|
|
|
|
void iob_reset(io_batch* b) {
|
|
unsigned long i,l;
|
|
iob_entry* x=array_start(&b->b);
|
|
l=array_length(&b->b,sizeof(iob_entry));
|
|
for (i=0; i<l; ++i) {
|
|
if (x[i].cleanup)
|
|
x[i].cleanup(x+i);
|
|
}
|
|
array_reset(&b->b);
|
|
byte_zero(b,sizeof(*b));
|
|
}
|