Systems Programming – Kernel Crash vs User-space Process Crash
A crash in User-space process (say something like segmentation fault) happens just in process virtual memory address space vs a crash in Kernel space (such as Linux Kernel which is…
a Linux and Tech Youtube Channel for advance Linux users, systems and network software programmers and tech enthusiasts
A crash in User-space process (say something like segmentation fault) happens just in process virtual memory address space vs a crash in Kernel space (such as Linux Kernel which is…
Linux Kernel Tasklets and Work queues are somewhat similar to user-space process threads in terms of the functionality and of course not in terms of its operation or its internal…
Refer:Linux Kernel Source:struct task_struct data-structure ↗Task state bitmask flags – tsk->state ↗struct task_struct instance example1: TASK_RUNNING, TASK_INTERRUPTIBLE, TASK_UNINTERRUPTIBLE, TASK_STOPPED ↗struct task_struct instance example2: struct task_struct *p – p->state == TASK_RUNNING…