Вопрос

Wanted to know what happens to the global file table and inode table when I do dup()

I know it returns an int, and it opens a new file descriptor in the file descriptor table

Это было полезно?

Решение

The dup call does not alter the inode or any system table. It only alters the file descriptor table which is a process related table.

I think these 2 questions might help you understand what dup actually does. Difference between creating a duplicate file descriptor using dup() and creating a hard link? dup2 / dup - why would I need to duplicate a file descriptor?

Bottom-line : Dup doesn't affect the system in anyway , just the process.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top