#linux-for-beginners
Read more stories on Hashnode
Articles with this tag
Systems Calls for I/O Operations:- Creat:-int creat(char *filename, mode_t mode);First parameter is filename and second is mode. Some most common...
Duplicating a Process Image:- You can create a new process by calling fork() . This system call duplicates the current process, creating a new entry...
Process:- Process is define as "an address space with one or more threads executing within that address space, and the required system resources for...