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.
18 lines
395 B
C
18 lines
395 B
C
#include <stdlib.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].type==FROMBUF_FREE)
|
|
free((char*)x[i].buf);
|
|
if (x[i].type==FROMFILE_CLOSE)
|
|
io_close(x[i].fd);
|
|
}
|
|
array_reset(&b->b);
|
|
byte_zero(b,sizeof(*b));
|
|
}
|