First Post
Hello This is my First Post. My name is Amit Joshi, doing back end stuff. This blog is mostly on web framework like ROR, Nodejs, CI and Linux Server.
Search for a command to run...
Hello This is my First Post. My name is Amit Joshi, doing back end stuff. This blog is mostly on web framework like ROR, Nodejs, CI and Linux Server.
No comments yet. Be the first to comment.
Modern Linux kernel development is fundamentally about correctness under concurrency. Whether we're writing a character driver, platform driver, network subsystem, or filesystem code, multiple executi

A hands-on Linux Kernel Module (LKM) demonstrating kernel mutexes, kernel threads, critical sections, thread synchronization, and proper module lifecycle management. Table of Contents Overview Lear

Introduction Concurrency is everywhere inside the Linux kernel. Multiple threads, processes, softirqs, tasklets, and interrupt handlers can access the same shared data simultaneously. Without synchron

Introduction While studying concurrent network programming, I explored how to implement a worker pool in F# using MailboxProcessor, F#'s built-in actor abstraction. The example launches multiple worke

Introduction Concurrency is everywhere inside the Linux kernel. Multiple execution contexts may attempt to access the same data simultaneously, leading to race conditions and corrupted state. In this
