2 रिपॉजिटरी
Mechanisms for transferring open file descriptors between parent and child processes for inter-process communication.
Distinct from File Descriptor Redirection: Focuses on sharing descriptors between processes, not redirecting them or managing limits.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · File Descriptor Sharing. Refine with filters or upvote what's useful.
This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation
Explains how open file descriptors are shared between parent and child after forking.
TCP-IP-NetworkNote is a comprehensive technical reference and guide for implementing network communication using TCP and UDP sockets in C and C++. It provides a detailed manual for using the POSIX socket API and covers the implementation of network protocols, synchronous and asynchronous I/O patterns, and concurrent programming models. The project is distinguished by its focus on cross-platform networking, offering a detailed comparison of socket implementation details and adaptation utilities between Linux and Windows Winsock environments. It specifically addresses the differences in header
Details the transfer of information between independent processes by sharing file descriptors through forking.