File: linux.io.mod

package info (click to toggle)
libfiu 1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: ansic: 2,633; python: 973; makefile: 599; sh: 309
file content (16 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

include: <fcntl.h>
include: <errno.h>

fiu name base: linux/io/

# sync_file_range() is linux-only
v: #ifdef __linux__

int sync_file_range(int fd, off64_t offset, off64_t nbytes, \
		unsigned int flags);
	on error: -1
	valid errnos: EBADF EINVAL EIO ENOMEM ENOSPC

v: #endif