On Tue, Jan 16, 2001 at 10:05:06AM -0500, David L. Parsley wrote:
> Felix von Leitner wrote:
> > > close (0);
> > > close (1);
> > > close (2);
> > > open ("/dev/console", O_RDWR);
> > > dup ();
> > > dup ();
> >
> > So it's not actually part of POSIX, it's just to get around fixing
> > legacy code? ;-)
>
> This makes me wonder...
>
> If the kernel only kept a queue of the three smallest unused fd's, and
> when the queue emptied handed out whatever it liked, how many things
> would break? I suspect this would cover a lot of bases...
First it would break Unix98 and other standards:
The Single UNIX (R) Specification, Version 2
Copyright (c) 1997 The Open Group
...
int open(const char *path, int oflag, ... );
...
The open() function will return a file descriptor for the named file that is the
lowest file descriptor not currently
open for that process. The open file description is new, and therefore the file
descriptor does not share it with any
other process in the system. The FD_CLOEXEC file descriptor flag associated with the
new file descriptor will be
cleared.
Jakub
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/