blob: 8e8bd7260fef259b72d43cbd2ba80608ec513dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* ISC license. */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#define N 4096
int main (void)
{
int p[2] ;
int fd ;
if (pipe(p) < 0) return 111 ;
fd = open("./src/sysdeps/trysplice.c", O_RDONLY) ;
if (fd < 0) return 111 ;
for (;;)
{
ssize_t r = splice(fd, 0, p[1], 0, N, 0) ;
if (r < 0) return 1 ;
if (!r) break ;
if (splice(p[0], 0, 1, 0, r, 0) < r) return 2 ;
}
return 0 ;
}
|