-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbtest.c
65 lines (55 loc) · 1.94 KB
/
nbtest.c
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* test for scull_pipe driver
* All it does is copy its input to its output, using nonblocking I/O and
* delaying between retries. The delay time is passed on the command line (1 sec
* by default)
* nbtest.c: read and write in non-blocking mode
* This should run with any Unix
*
* Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
* Copyright (C) 2001 O'Reilly & Associates
*
* The source code in this file can be freely used, adapted,
* and redistributed in source or binary form, so long as an
* acknowledgment appears in derived source files. The citation
* should list that the code comes from the book "Linux Device
* Drivers" by Alessandro Rubini and Jonathan Corbet, published
* by O'Reilly & Associates. No warranty is attached;
* we cannot take responsibility for errors or fitness for use.
*/
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <errno.h>
char buffer[4096];
int main(int argc, char **argv)
{
int delay = 1, n, m = 0;
// The delay time is passed on the command line
if(argc > 1){
delay = atoi(argv[1]);
}
/**
* F_SETFL(int) - Set the file status flags to the value specified by arg.
* F_GETFL(void) - Return the file access mode and the file status flags;
*/
fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK); // set stdin to Non-block
fcntl(1, F_SETFL, fcntl(1, F_GETFL) | O_NONBLOCK); // Set stdout to Non-block
while(1){
// read what's stored in device to buffer
n = read(0, buffer, 4096);
// write what has been read to buffer -> the device
if(n >= 0){
m = write(1, buffer, n);
}
// if read fails or write fails, and errno is not try-again
if((n < 0 || m < 0) && (errno != EAGAIN)){
break;
}
// sleep for delay seconds, in this case, is 1 sec.
sleep(delay);
}
perror(n < 0 ? "stdin" : "stdout");
exit(1);
}