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