File: open.c

package info (click to toggle)
apparmor 2.13.6-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,604 kB
  • sloc: python: 18,892; ansic: 17,618; perl: 11,105; sh: 10,465; cpp: 5,413; yacc: 1,950; makefile: 1,729; lex: 1,105; pascal: 1,097; ruby: 374; exp: 250; java: 212; xml: 159
file content (34 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (2)
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
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <linux/unistd.h>

#define MAX_LOOP	1000000
int main(int argc, char *argv[])
{
	int fd, i, success, fail;
	char *o_file = "/bin/ls";

	if (argc > 1)
		o_file = argv[1];

	for (i=0, success=0, fail=0; i<MAX_LOOP; i++) {
//	for (i=0, success=0, fail=0; !i; i++) {
		fd = open(o_file, O_RDONLY);
		if (fd != -1) {
			success++;
			close(fd);
		} else {
			printf("open: %s\n", strerror(errno));
			fail++;
		}
	}
	printf("Iterations: %d\tSuccess: %d\t Fail: %d\n",
			MAX_LOOP, success, fail);

	return 0;
}