What is full name of fcntl Unix/Linux system call
What is full name of fcntl Unix/Linux system call Man page of fcntl tell its used for manipulating file descriptors. But this name is not easy to remember. Knowing its full name will help in remember this system call name and its use. I tried to find on internet but could not get anything except man pages. fcntl Please someone tell what is full name or origin of name of fcntl. 1 Answer 1 From POSIX, it is F ile C o nt ro l : NAME fcntl - f ile c o nt ro l fcntl There is a related system call, ioctl , i.e. I nput- O utput C on t ro l . The difference between the 2 is that fcntl modifies the file descriptor / file description, whereas ioctl controls behaviour of the input/output device behind the file description. ioctl fcntl ioctl Now, you just have to remember if it's fcntl , fctl or fctrl :p – ikegami Nov 27 '17 at 1...