Fading Coder

One Final Commit for the Last Sprint

Implementing Shared Memory for Inter-Process Communication on Linux

Multi-threading and multi-processing are core approaches for concurrent software development, with key differences in how they handle memory access. Threads belonging to the same parent process share the entire process address space by default, so data exchange between threads can happen directly vi...

How to Compile Custom Glibc Versions on Linux

Download the required glibc source release archive from the official GNU glibc FTP repository at https://ftp.gnu.org/gnu/glibc/. Extract the downloaded tarball, create an out-of-tree build directory inside the extracted source folder, and prepare a separate installation target directory to avoid con...

Signal Handling and Message Queue Implementation in C

Signal Handling Mechanisms Default, Ignore, and Custom Signal Handlers #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <signal.h> void custom_signal_handler(int sig_num) { if (sig_num == SIGINT) { printf("Received SIGINT signal (Ctrl+C)\n"); } }...