the iob calls return int, not void
This commit is contained in:
parent
82e6b4086b
commit
b0886bc324
@ -72,7 +72,7 @@ TAI_OBJS=$(patsubst tai/%.c,%.o,$(wildcard tai/*.c))
|
|||||||
TAIA_OBJS=$(patsubst taia/%.c,%.o,$(wildcard taia/*.c))
|
TAIA_OBJS=$(patsubst taia/%.c,%.o,$(wildcard taia/*.c))
|
||||||
DNS_OBJS=$(patsubst dns/%.c,%.o,$(wildcard dns/*.c))
|
DNS_OBJS=$(patsubst dns/%.c,%.o,$(wildcard dns/*.c))
|
||||||
CASE_OBJS=$(patsubst case/%.c,%.o,$(wildcard case/*.c))
|
CASE_OBJS=$(patsubst case/%.c,%.o,$(wildcard case/*.c))
|
||||||
ARRAY_OBJS=$(patsubst array/%.c,%.o,$(wildcard array/*.c))
|
ARRAY_OBJS=$(patsubst array/%.c,%.o,$(wildcard array/array_*.c))
|
||||||
MULT_OBJS=$(patsubst mult/%.c,%.o,$(wildcard mult/*.c))
|
MULT_OBJS=$(patsubst mult/%.c,%.o,$(wildcard mult/*.c))
|
||||||
IO_OBJS=$(patsubst io/%.c,%.o,$(wildcard io/*.c))
|
IO_OBJS=$(patsubst io/%.c,%.o,$(wildcard io/*.c))
|
||||||
CDB_OBJS=$(patsubst cdb/%.c,%.o,$(wildcard cdb/*.c))
|
CDB_OBJS=$(patsubst cdb/%.c,%.o,$(wildcard cdb/*.c))
|
||||||
|
@ -4,12 +4,14 @@ iob_addbuf \- add buffer to I/O batch
|
|||||||
.SH SYNTAX
|
.SH SYNTAX
|
||||||
.B #include <iob.h>
|
.B #include <iob.h>
|
||||||
|
|
||||||
void \fBiob_addbuf\fP(io_batch* b,const void* buf,uint64 n);
|
int \fBiob_addbuf\fP(io_batch* b,const void* buf,uint64 n);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
iob_addbuf schedules \fIn\fR bytes starting at \fIbuf\fR to be written
|
iob_addbuf schedules \fIn\fR bytes starting at \fIbuf\fR to be written
|
||||||
with the I/O batch \fIb\fR.
|
with the I/O batch \fIb\fR.
|
||||||
|
|
||||||
Use \fBiob_addbuf_free\fR if you want the buffer to be deallocated
|
Use \fBiob_addbuf_free\fR if you want the buffer to be deallocated
|
||||||
automatically by \fBiob_reset\fR.
|
automatically by \fBiob_reset\fR.
|
||||||
|
.SH "RETURN VALUE"
|
||||||
|
Returns 1 on success, 0 on failure.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
iob_reset(3), iob_send(3), iob_addbuf_free(3), iob_adds(3), iob_addfile(3)
|
iob_reset(3), iob_send(3), iob_addbuf_free(3), iob_adds(3), iob_addfile(3)
|
||||||
|
@ -4,11 +4,14 @@ iob_addbuf_free \- add buffer to I/O batch, with deallocation
|
|||||||
.SH SYNTAX
|
.SH SYNTAX
|
||||||
.B #include <iob.h>
|
.B #include <iob.h>
|
||||||
|
|
||||||
void \fBiob_addbuf_free\fP(io_batch* b,const void* buf,uint64 n);
|
int \fBiob_addbuf_free\fP(io_batch* b,const void* buf,uint64 n);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
iob_addbuf_free schedules \fIn\fR bytes starting at \fIbuf\fR to be
|
iob_addbuf_free schedules \fIn\fR bytes starting at \fIbuf\fR to be
|
||||||
written with the I/O batch \fIb\fR.
|
written with the I/O batch \fIb\fR.
|
||||||
|
|
||||||
The buffer will automatically be deallocated by \fBiob_reset\fR.
|
The buffer will automatically be deallocated by \fBiob_reset\fR.
|
||||||
|
.SH "RETURN VALUE"
|
||||||
|
Returns 1 if successful, 0 if not. In the failure case, the buffer was
|
||||||
|
deallocated.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
iob_reset(3), iob_send(3), iob_addbuf(3), iob_adds(3), iob_addfile(3)
|
iob_reset(3), iob_send(3), iob_addbuf(3), iob_adds(3), iob_addfile(3)
|
||||||
|
@ -4,7 +4,7 @@ iob_addfile \- add file region to I/O batch
|
|||||||
.SH SYNTAX
|
.SH SYNTAX
|
||||||
.B #include <iob.h>
|
.B #include <iob.h>
|
||||||
|
|
||||||
void \fBiob_addfile\fP(io_batch* b,int64 fd,uint64 off,uint64 n);
|
int \fBiob_addfile\fP(io_batch* b,int64 fd,uint64 off,uint64 n);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
iob_addfile schedules \fIn\fR bytes from the file descriptor \fIfd\fR
|
iob_addfile schedules \fIn\fR bytes from the file descriptor \fIfd\fR
|
||||||
starting at offset \fIoff\fR to be written with the I/O batch \fIb\fR.
|
starting at offset \fIoff\fR to be written with the I/O batch \fIb\fR.
|
||||||
@ -13,5 +13,7 @@ You may not close \fIfd\fR before iob_send indicates it is done.
|
|||||||
|
|
||||||
Use \fBiob_addfile_close\fR if you want the file descriptor to be closed
|
Use \fBiob_addfile_close\fR if you want the file descriptor to be closed
|
||||||
automatically by \fBiob_reset\fR.
|
automatically by \fBiob_reset\fR.
|
||||||
|
.SH "RETURN VALUE"
|
||||||
|
Returns 1 on success, 0 on failure.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
iob_reset(3), iob_send(3), iob_addbuf(3), iob_addfile_close(3)
|
iob_reset(3), iob_send(3), iob_addbuf(3), iob_addfile_close(3)
|
||||||
|
@ -4,7 +4,7 @@ iob_addfile_close \- add file region to I/O batch
|
|||||||
.SH SYNTAX
|
.SH SYNTAX
|
||||||
.B #include <iob.h>
|
.B #include <iob.h>
|
||||||
|
|
||||||
void \fBiob_addfile_close\fP(io_batch* b,int64 fd,uint64 off,uint64 n);
|
int \fBiob_addfile_close\fP(io_batch* b,int64 fd,uint64 off,uint64 n);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
iob_addfile_close schedules \fIn\fR bytes from the file descriptor \fIfd\fR
|
iob_addfile_close schedules \fIn\fR bytes from the file descriptor \fIfd\fR
|
||||||
starting at offset \fIoff\fR to be written with the I/O batch \fIb\fR.
|
starting at offset \fIoff\fR to be written with the I/O batch \fIb\fR.
|
||||||
@ -12,5 +12,8 @@ starting at offset \fIoff\fR to be written with the I/O batch \fIb\fR.
|
|||||||
You may not close \fIfd\fR before iob_send indicates it is done.
|
You may not close \fIfd\fR before iob_send indicates it is done.
|
||||||
|
|
||||||
\fBiob_reset\fR will call io_close(fd).
|
\fBiob_reset\fR will call io_close(fd).
|
||||||
|
.SH "RETURN VALUE"
|
||||||
|
Returns 1 on success, 0 on failure. In the failure case, the file
|
||||||
|
descriptor has been closed.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
iob_reset(3), iob_send(3), iob_addbuf(3), iob_addfile(3)
|
iob_reset(3), iob_send(3), iob_addbuf(3), iob_addfile(3)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user