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.
12 lines
392 B
12 lines
392 B
// Copyright (c) Vitaliy Filippov, 2019+
|
|
// License: VNPL-1.1 or GNU GPL-2.0+ (see README.md for details)
|
|
|
|
#pragma once
|
|
|
|
#include <unistd.h>
|
|
#include <sys/uio.h>
|
|
|
|
int read_blocking(int fd, void *read_buf, size_t remaining);
|
|
int write_blocking(int fd, void *write_buf, size_t remaining);
|
|
int readv_blocking(int fd, iovec *iov, int iovcnt);
|
|
int writev_blocking(int fd, iovec *iov, int iovcnt);
|
|
|