mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-08 04:55:52 +00:00
still open files is dumped out exit. Enabled using the --track-fds switch. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2031
21 lines
373 B
C
21 lines
373 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int s1;
|
|
|
|
/*
|
|
* Fedora Core 1's Perl opens /dev/pts/2 as fd 10. Let's close it
|
|
* now to get consistent results across different releases.
|
|
*/
|
|
|
|
close(10);
|
|
|
|
s1 = open("/dev/null", O_RDONLY);
|
|
if(fcntl(s1, F_DUPFD, s1) == -1) perror("fcntl");
|
|
return 0;
|
|
}
|