THREADS - Program in Parallel!

Опубликовано: 16 Май 2025
на канале: hoff._world
2,665
163

We're looking at multithreaded program architecture, threading across languages, synchronisation primitives, all that juicy stuff.

Learn how to write a multithreaded socket server:    • How to Write a Socket Server from Sta...  
https://docs.python.org/3/library/thr...
https://www.ibm.com/docs/en/aix/7.2?t...
https://docs.oracle.com/cd/E19683-01/...

Chapters
00:00 - Intro and Overview
01:05 - Basic Threading Architecture
03:42 - Example 1 - Crash Handling Thread in Python
05:50 - Was threading Example 1 a good idea?
08:34 - How could I have improved Example 1?
09:22 - Example 2 - Application and Network Threads in C
12:20 - Was threading Example 2 a good idea?
13:28 - Threading in C and Intro to Mutexes
16:27 - Example 3 - Main and Worker Thread Paradigm in Python
19:10 - Was threading Example 3 a good idea?
20:00 - How could I have improved Example 3?
21:26 - Example 4 - Thread-pool Worker Paradigm in C
24:57 - Semaphores, Read/Write Locks, Events