taglinefilesource code
oldfd36fs/fcntl.casmlinkage int sys_dup2(unsigned int oldfd, unsigned int newfd)
oldfd38fs/fcntl.cif (oldfd >= NR_OPEN || !current->files->fd[oldfd])
oldfd40fs/fcntl.cif (newfd == oldfd)
oldfd46fs/fcntl.creturn dupfd(oldfd,newfd);