From 447ae3ca4393249a3c068fae343bbf962da0c875 Mon Sep 17 00:00:00 2001 From: Seema Shivaram Upadhya Date: Wed, 11 Aug 2021 22:00:03 -0700 Subject: [PATCH] System calls and signals (#121) * System calls and signals * Changing the url for Linux basics * Changed URL's to reflect the correct content Co-authored-by: Seema Shivaram Upadhya Co-authored-by: kalyan --- .../system_calls_and_signals/intro.md | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/courses/level102/system_calls_and_signals/intro.md b/courses/level102/system_calls_and_signals/intro.md index 8abeaee..f88abbf 100644 --- a/courses/level102/system_calls_and_signals/intro.md +++ b/courses/level102/system_calls_and_signals/intro.md @@ -14,16 +14,16 @@ The course covers a fundamental understanding of signals and system calls. It sh The course does not discuss any other interrupts or interrupt handling apart from signals. The course will not deep dive into signal handler and GNU C library. ## Course Contents -- [Signals](https://linkedin.github.io/school-of-sre/level102/signals) - - [Introduction to interrupts and signals](https://linkedin.github.io/school-of-sre/level102/signals/#introduction-to-interrupts-and-signals) - - [Types of signals](https://linkedin.github.io/school-of-sre/level102/signals/#types-of-signals) - - [Sending signals to process](https://linkedin.github.io/school-of-sre/level102/signals/#sending-signals-to-process) - - [Handling signals](https://linkedin.github.io/school-of-sre/level102/signals/#handling-signals) - - [Role of signals in system calls with the example of *wait()*](https://linkedin.github.io/school-of-sre/level102/signals/#role-of-signals-in-system-calls-with-the-example-of-wait) -- [System calls](https://linkedin.github.io/school-of-sre/level102/system_calls) - - [Introduction](https://linkedin.github.io/school-of-sre/level102/system_calls/#introduction) - - [Types of system calls](https://linkedin.github.io/school-of-sre/level102/system_calls/#types-of-system-calls) - - [User mode,kernel mode and their transitions](https://linkedin.github.io/school-of-sre/level102/system_calls/#user-mode-kernel-mode-and-their-transitions) - - [Working of *write()* system call](https://linkedin.github.io/school-of-sre/level102/system_calls/working-of-write-system-call) - - [Debugging in Linux with strace](https://linkedin.github.io/school-of-sre/level102/system_calls/debugging-in-linux-with-strace) - +- [Signals](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals) + - [Introduction to interrupts and signals](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals/#introduction-to-interrupts-and-signals) + - [Types of signals](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals/#types-of-signals) + - [Sending signals to process](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals/#sending-signals-to-process) + - [Handling signals](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals/#handling-signals) + - [Role of signals in system calls with the example of *wait()*](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/signals/#role-of-signals-in-system-calls-with-the-example-of-wait) +- [System calls](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls) + - [Introduction](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls/#introduction) + - [Types of system calls](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls/#types-of-system-calls) + - [User mode,kernel mode and their transitions](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls/#user-mode-kernel-mode-and-their-transitions) + - [Working of *write()* system call](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls/#working-of-write-system-call) + - [Debugging in Linux with strace](https://linkedin.github.io/school-of-sre/level102/system_calls_and_signals/system_calls/#debugging-in-linux-with-strace) +