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.
20 lines
384 B
C
20 lines
384 B
C
#include "iob_internal.h"
|
|
|
|
int iob_addfile(io_batch* b,int64 fd,uint64 off,uint64 n) {
|
|
iob_entry* e;
|
|
if (n==0) return 1;
|
|
io_fd(fd);
|
|
e=array_allocate(&b->b,sizeof(iob_entry),
|
|
array_length(&b->b,sizeof(iob_entry)));
|
|
if (!e) return 0;
|
|
e->type=FROMFILE;
|
|
e->fd=fd;
|
|
e->buf=0;
|
|
e->n=n;
|
|
e->offset=off;
|
|
e->cleanup=0;
|
|
b->bytesleft+=n;
|
|
++b->files;
|
|
return 1;
|
|
}
|