Reorganized process/thread videos.

This commit is contained in:
John Washam 2016-06-21 21:48:49 -07:00
parent 9ed61cc19c
commit 42b55c36f4

View File

@ -398,9 +398,7 @@ Operating Systems (25 videos):
Covers: Covers:
Processes, Threads, Concurrency issues Processes, Threads, Concurrency issues
- difference - difference
- threads: - threads
https://www.youtube.com/playlist?list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M
- stopped here: https://www.youtube.com/watch?v=_N0B5ua7oN8&list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M&index=4
- locks - locks
- mutexes - mutexes
- semaphores - semaphores
@ -415,6 +413,9 @@ Operating Systems (25 videos):
Forking is really copy on write (read-only) until the new process writes to memory, then it does a full copy. Forking is really copy on write (read-only) until the new process writes to memory, then it does a full copy.
Context switching Context switching
- How context switching is initiated by the operating system and underlying hardware - How context switching is initiated by the operating system and underlying hardware
- threads in C++:
https://www.youtube.com/playlist?list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M
- stopped here: https://www.youtube.com/watch?v=_N0B5ua7oN8&list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M&index=4
Scheduling Scheduling
Weighted random sampling Weighted random sampling
Implement system routines Implement system routines