CPU Scheduling Basics

  Рет қаралды 40,031

Jacob Sorber

Jacob Sorber

Күн бұрын

Пікірлер: 46
@yanistancheva3076
@yanistancheva3076 3 жыл бұрын
16 minutes summed up my whole 2 hour lecture thank you
@JacobSorber
@JacobSorber 3 жыл бұрын
You're welcome. Glad I could help.
@ukaszkiepas57
@ukaszkiepas57 2 жыл бұрын
+1
@user-ej7ss8ei2g
@user-ej7ss8ei2g 3 жыл бұрын
Hah, imagine having a teacher or prof. so cool that they have their own high quality channel, but also says when something might show up on a quiz. Love the videos, you've helped me a lot.
@Christobanistan
@Christobanistan 2 жыл бұрын
I've been a programming since 1989 or so, always wondered about this but never got around to this. Cool beans.
@abanoubsameh6608
@abanoubsameh6608 3 жыл бұрын
Great videos! I wish I found you earlier. Keep up the good work.
@roargamer007
@roargamer007 Ай бұрын
2:02 Process States Created = New Active = Running Waiting Ready Exited = Terminated
@santoshsco
@santoshsco 3 жыл бұрын
Love your channel jacob , wish i had found this earlier .
@JacobSorber
@JacobSorber 3 жыл бұрын
Thanks, Santosh. Glad you're enjoying it.
@g194g
@g194g 4 жыл бұрын
Very clear and helpful explanation
@omhmpp
@omhmpp 2 жыл бұрын
absolutely phenomenal video, but I just wanna point out that SJF (shortest job first) is actually different than shortest remaining time first SRTF
@totalyunsober
@totalyunsober 4 жыл бұрын
Very helpful video! Thank you!
@JacobSorber
@JacobSorber 4 жыл бұрын
You're welcome.
@jonathanflores3748
@jonathanflores3748 4 жыл бұрын
Great content! Love your videos!
@JacobSorber
@JacobSorber 4 жыл бұрын
Thanks, Jonathan. Glad you like them!
@bigwoof2137
@bigwoof2137 6 ай бұрын
Avg. Response time 7:51 is wrong, should be 4.33. P1: 0 P2: 7 - 2 = 5 P3: 7 + 4 - 3 = 8
@bad_robot
@bad_robot 6 ай бұрын
the scout law reference lol
@kushagrakumar9576
@kushagrakumar9576 5 жыл бұрын
What is the difference between chrt and nice utility for process scheduling in linux? Could you please explain sched_setscheduler ( sched.h ) and related system call with an example .
@JacobSorber
@JacobSorber 5 жыл бұрын
chrt is more general and more powerful than nice. Nice basically changes the inverse of the processes priority assuming the default Linux scheduler. With chrt, you can change the scheduler. Linux offers a few different schedulers (check the chrt man page for details), and the naming is a bit misleading, because they refer to "real-time" scheduling, but Linux isn't a RTOS. So, this isn't real real-time scheduling (no deadlines). It's just a higher priority scheduling algorithm. If you need an RTOS (you're implementing flight control on an airplane or running a self-driving car) I would recommend looking somewhere other than Linux.
@kushagrakumar9576
@kushagrakumar9576 5 жыл бұрын
@@JacobSorber Thanks Jacob for the explanation. Please continue to make more videos on OS. Do you think is it worth to make a continuation video on process scheduling with More system calls like sched_setscheduler etc .?
@donha475
@donha475 4 жыл бұрын
Lol @ -20 niceness impersonation ;)
@pasteyourinjectionstringhere
@pasteyourinjectionstringhere 2 ай бұрын
HAHAHA
@corcodelmarian
@corcodelmarian Жыл бұрын
On Intel proc allways look to call and jump to be paired with ret on binary Code but, gcc forget sometimes, this îs big problem on linux.
@XxxGuitarMadnessxxX
@XxxGuitarMadnessxxX 3 жыл бұрын
I've been watching your videos for a little while now (Great Content by the way! Loving the neat tricks you can learn from watching your videos!) But I died when you started quoting the whole B.S. oath - It's been 10 years since I heard all that lmao
@JacobSorber
@JacobSorber 3 жыл бұрын
Glad you enjoyed that.
@marziehizadi985
@marziehizadi985 2 жыл бұрын
Fantastic, thanks a lot.
@oviya.n1317
@oviya.n1317 3 жыл бұрын
Pls make playlists for OS and embedded system
@randomsoul00
@randomsoul00 2 жыл бұрын
well explained👍
@maoryatskan6346
@maoryatskan6346 4 жыл бұрын
Awesome
@jenselstner5527
@jenselstner5527 3 жыл бұрын
Best of video is the LEGO in the background ... just kidding. ;o) Good explanation and nice LEGOs.
@MB-hs4vp
@MB-hs4vp 6 жыл бұрын
Do these scheduling techniques differ for RTOS?
@JacobSorber
@JacobSorber 6 жыл бұрын
Yes. In real-time scheduling tasks have deadlines, and the scheduler has to reason about those deadlines.
@ailijic
@ailijic 5 жыл бұрын
Some RTOS can have both real time and standard tasks. Also, the Linux kernel can have real time tasks. Real time is a very overused term. Know the requirements of your system and then look for an OS that can handle those requirements.
@ropersonline
@ropersonline 4 жыл бұрын
@@ailijic It's not just the OS; go look for suitable silicon also. Back in the day that might have been Motorola 68k or even MOS 6502. These days it's prolly s/th like ARM Cortex-R.
@ropersonline
@ropersonline 4 жыл бұрын
11:50: "If alpha is one, then we ignore reality and we just go with the last prediction... If alpha is close to zero, we predict almost solely based on the last experience..." So either the last or the last? That doesn't seem to make too much sense...?
@JacobSorber
@JacobSorber 4 жыл бұрын
There's the last prediction (p_n, what we predicted last) and the last experience (m, what actually happened last). They're both "last" things, but different things. Sorry for the confusion.
@ropersonline
@ropersonline 4 жыл бұрын
@@JacobSorber Thanks for taking the time and answering everything. You're really nice, and not in the scheduling sense either. :) I plan to watch all your videos, but there's a whole year's worth still left. :)
@BritishBeachcomber
@BritishBeachcomber 2 жыл бұрын
The OS/2 scheduler was so bad. If a task/thread went into an infinite loop, with no system calls, the whole system would hang.
@joerogan3079
@joerogan3079 Жыл бұрын
*MY PROF IS HORRIBLE* 🤦‍♂️ #helpMe
@aubriewest1135
@aubriewest1135 3 жыл бұрын
14:59 Sounds like Ta'arof in Iran :)
@Axias85
@Axias85 2 жыл бұрын
....Wait, was that a Boy Scout joke?
@alacastersoi8265
@alacastersoi8265 4 жыл бұрын
"7,214 views" ? wHaT?
@faizunisajazadi8732
@faizunisajazadi8732 2 жыл бұрын
Great lecture! Thanks!
What is a semaphore? How do they work? (Example in C)
13:27
Jacob Sorber
Рет қаралды 308 М.
How to make memory read-only in your C programs.
12:57
Jacob Sorber
Рет қаралды 20 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 56 МЛН
Как Я Брата ОБМАНУЛ (смешное видео, прикол, юмор, поржать)
00:59
Миллионер | 3 - серия
36:09
Million Show
Рет қаралды 2,2 МЛН
Safety and Speed Issues with Threads. (pthreads, mutex, locks)
9:13
why are switch statements so HECKIN fast?
11:03
Low Level
Рет қаралды 428 М.
Debugging with Core Dumps
9:16
Jacob Sorber
Рет қаралды 66 М.
How do I access a single bit?
11:07
Jacob Sorber
Рет қаралды 22 М.
The Evolution of the Operating System
27:27
Asianometry
Рет қаралды 213 М.
How one thread listens to many sockets with select in C.
12:01
Jacob Sorber
Рет қаралды 100 М.
How to Inspect Compiled Binaries (binutils, objdump)
7:53
Jacob Sorber
Рет қаралды 43 М.
Scheduling Criteria
13:35
Neso Academy
Рет қаралды 216 М.
Handling Errors in C/Unix (perror, strerror, errno)
6:36
Jacob Sorber
Рет қаралды 38 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 56 МЛН