| tag | line | file | source code |
|---|---|---|---|
| newfd | 38 | fs/fcntl.c | int sys_dup2(unsigned int oldfd, unsigned int newfd) |
| newfd | 42 | fs/fcntl.c | if (newfd == oldfd) |
| newfd | 43 | fs/fcntl.c | return newfd; |
| newfd | 44 | fs/fcntl.c | sys_close(newfd); |
| newfd | 45 | fs/fcntl.c | return dupfd(oldfd,newfd); |