mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
#include "iob_internal.h" |
|
|
|
int iob_addfile(io_batch* b,int64 fd,uint64 off,uint64 n) { |
|
iob_entry* 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; |
|
b->bytesleft+=n; |
|
++b->files; |
|
return 1; |
|
}
|
|
|