System Calls

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Operating System: System Calls
    Topics discussed:
    1. System Calls.
    2. User mode.
    3. Kernel mode.
    4. Examples of System Calls.
    Follow Neso Academy on Instagram: @nesoacademy
    Contribute: www.nesoacademy...
    Memberships: bit.ly/2U7YSPI
    Books: www.nesoacademy...
    Website ► www.nesoacademy...
    Facebook ► goo.gl/Nt0PmB
    Twitter ► / nesoacademy
    Music:
    Axol x Alex Skrindo - You [NCS Release]
    #OperatingSystemByNeso #os #OperatingSystem #SystemCalls

Комментарии • 206

  • @hoangminhchau2187
    @hoangminhchau2187 Год назад +157

    There are 2 modes of execution for a program:
    1) User mode:
    - Do not have access to resources like memory or hardwares
    - When a program crashes, the entire system will not break down
    2) Kernel mode:
    - Privilidged mode
    - Have access to resources
    - When a program crashes, the entire system breaks down
    Because user mode is safer, most programs run in user mode. But some programs might need access to resources, so they will make a call to the OS to request for these. This call is system call.
    When the OS receives the system call, it will change the mode of the program to kernel mode. This is called context switching.

    • @Madhavi_1177
      @Madhavi_1177 Год назад +4

      🎉

    • @jeanxza5395
      @jeanxza5395 11 месяцев назад +21

      Called mode shifting not context switching he made a mkstake

    • @inishkohli273
      @inishkohli273 5 месяцев назад +11

      "Because user mode is safer, most programs run in user mode".. It maybe better to say , most program are REQUIRED to run in user(restricted mode) by the parent of the computer(OS) because this kid from neighbor house(programs created by third party developer) can break and crash things(crash system) when they come to play in our house(run in our OS) , they can steal things(privacy issues from external programs) .. However our own kid( OS system default apps or programs like Ms Word, ... has loose to no restriction) because we gave birth to our kid, we can easily correct their behavior....(fix bug of system apps) ...>....Sorry but my analogy is weird.🤣

    • @Subhasini_Sethi
      @Subhasini_Sethi 5 месяцев назад

      ​@@inishkohli273😂😂😂😂

    • @mathy642
      @mathy642 4 месяца назад

      @@jeanxza5395It can be mode switching/context switching

  • @narendrachintala7998
    @narendrachintala7998 4 года назад +644

    Switching from kernel to user and vice versa is known as mode shifting not context switch. Context switch is the one which happens between 2 processes.

  • @mrbrian826
    @mrbrian826 4 года назад +99

    Very happy to find an explanation in English that is easy to understand. Many thanks from Ireland 🤝

    • @bradleytimm5349
      @bradleytimm5349 2 года назад +7

      I'm pretty sure 10% of India's GDP consists of English Language CS related tutorial videos.

    • @hhcdghjjgsdrt235
      @hhcdghjjgsdrt235 2 года назад +3

      @@bradleytimm5349 rest 90% of gdp consist of the salary of Indian software engineers who can speak English.

    • @vikassaini7485
      @vikassaini7485 Год назад +2

      @@hhcdghjjgsdrt235 😂😂

    • @munisasidhar4897
      @munisasidhar4897 2 месяца назад

      Yes

  • @bekacynthia
    @bekacynthia 4 года назад +74

    The first three and a half minutes of your explanation helped me understand something I was reading and reading but was not grasping it entirely. Thank you for the lesson.

  • @TechnoyashBro
    @TechnoyashBro 3 года назад +24

    🥳 Tqsm sir from india 🇮🇳

  • @Mehraj_IITKGP
    @Mehraj_IITKGP Год назад +35

    What I learnt from the lecture:
    User mode and kernel mode refer to two different modes of operation for a computer's processor and operating system.
    User mode is the mode in which user applications and programs operate. In user mode, the processor can access only a limited set of resources and instructions, which are defined by the operating system. This includes memory, input/output devices, and CPU registers. User-mode applications do not have direct access to the system's hardware or kernel memory, and any attempt to access such resources will result in an error.
    On the other hand, Kernel mode is a privileged mode in which the kernel operates. In kernel mode, the processor has access to all system resources, including hardware devices and kernel memory. This allows the operating system to perform low-level operations and interact with hardware devices directly. System-level processes, such as device drivers and system services, operate in kernel mode.
    A system call is a call made by a program to OS in order to access certain resources which are not accessible in the user mode. So in brief, we can say that a system call is special call made by a program to switch from user mode to kernel mode in order to access certain resources. This is known as mode-shifting, not context switching as the instructor mistakenly called it context switching. The term "context switching" usually refers to the process of saving and restoring the context (i.e., state) of a process or thread so that it can be temporarily suspended and later resumed by the operating system. The term "mode switching" or "mode transition" may be more appropriate to describe the process of switching from user mode to kernel mode and back again.
    When a user-mode program makes a system call to the operating system, the following steps occur:
    1. The user-mode program issues a system call request, typically through a library function provided by the operating system or through an interrupt instruction.
    2. The processor switches from user mode to kernel mode, which involves saving the current state of the user-mode program, including its register values and program counter, onto the kernel stack.
    3. The operating system identifies the requested operation, validates the arguments passed by the user-mode program, and executes the operation on behalf of the user-mode program. This may involve allocating or releasing resources, modifying data structures, or performing I/O operations.
    4. Once the operation is completed, the operating system saves the results of the operation, restores the saved context of the user-mode program from the kernel stack, and switches back to user mode.
    5. The user-mode program resumes execution at the point where the system call was made, and the results of the system call are made available to the program.

    • @Ahnos
      @Ahnos 10 месяцев назад +1

      Thanks for the notes

  • @trilecao9014
    @trilecao9014 3 года назад +7

    Thanks!
    1. User mode: safer
    2. Kernel mode: more privilege

  • @AS-ne5wu
    @AS-ne5wu 7 месяцев назад +2

    Had to rewatch this several times since it's a difficult topic for beginners, but understood everything in the end. Amazing how just one video gives so much info.

  • @quratraja7391
    @quratraja7391 4 года назад +6

    Great job
    Tutorial explains about system calls. System call is the call made by a program running in user mode to the kernel of the operating system to switch the program from user to the kernel mode so that it can access required resources. An example of copying contents from one source file to a destination file is given. This small task involves lots of system calls.

  • @jamal8916
    @jamal8916 10 месяцев назад +2

    You have explained this complex topic in the most amazingly simple manner, excellent teacher kind sir!

  • @sheetalyadav4483
    @sheetalyadav4483 3 года назад +9

    Thank you sir ! I'm grateful that you're my teacher

  • @noviljohnsonnovil1676
    @noviljohnsonnovil1676 5 лет назад +15

    u've got really great patience. n thanks a lot.

  • @MrKristian252
    @MrKristian252 3 года назад +1

    for [name of some hardware], you need a [big pause] *system call*
    This is now burned into my brain, thank you so much for this explanation surrounding the topic!

  • @Hero360-k1e
    @Hero360-k1e 5 месяцев назад +11

    I watch this video for 2 hours, I can't focus😢😢😢

  • @jawadashraf3181
    @jawadashraf3181 5 лет назад +31

    Dear, transfer from user mode to kernal mode is not context switching. please correct it in video. Context switching involves processes only.

  • @mazharkhaliq1971
    @mazharkhaliq1971 2 года назад +6

    With the level of knowledge you always amaze me 😊, thanks for the video

  • @coding_unicorn2
    @coding_unicorn2 Год назад +3

    Your explanation is so easy to understand the topics which appears difficult 😊❤

  • @YashDEVELOPER12
    @YashDEVELOPER12 2 года назад +4

    You are a great teacher sir.. God bless you always and thanks alot from bottom of my heart❤

  • @dhanarsantika
    @dhanarsantika 6 лет назад +6

    Nice explaination, you made it simple

  • @codextreme7756
    @codextreme7756 5 лет назад +29

    Switching from user mode to kernel mode is not a context switch it just a mode switch. When making a system call there is no context switch because you are in the same address space using the same page table.

    • @saadmanahmed860
      @saadmanahmed860 4 года назад +5

      thanks to u for correcting the concept

  • @f2pethereum67
    @f2pethereum67 3 года назад +7

    Haha thanka alot sir my teacher teaches everything from your automata lectures but you explain better and today your example was the answer to my os assignment thanku sir really appreciated ❤️

  • @trishna1051
    @trishna1051 5 лет назад +5

    Thank u very much.. Really it's very easy to understand after watching ur Vedios.. It helps me a lot...

  • @chaturadh
    @chaturadh 6 лет назад +52

    Your explanation is really good. Could you please make a video about fork(),exec() and wait() function, it is really hard to understand
    Thank you

  • @saadmanahmed860
    @saadmanahmed860 4 года назад +3

    good illustrations

  • @bhoopendrafagna8535
    @bhoopendrafagna8535 3 года назад +2

    very easy way of explaining thanks a lot sir

  • @ishajaswal7547
    @ishajaswal7547 Год назад +2

    Very well explained

  • @hotfirefly
    @hotfirefly 2 года назад +1

    Damn sys call for each and every step

  • @user-rc1jg2rf3h
    @user-rc1jg2rf3h 7 месяцев назад +1

    bohut bhadiya videos bna rhe ho
    thank you sir

  • @MMX17
    @MMX17 3 года назад +3

    It kind of sounds like a system call is just a method called by the OS. Like in C++ a cout statement is used to display something to the screen, but in your explanation you mention a system call is used to make that happen.

  • @paulinov.rodriguesmuebe6744
    @paulinov.rodriguesmuebe6744 5 лет назад +4

    Nice explanation. Huggs from Mozambique

  • @mohsinabdulrauf9145
    @mohsinabdulrauf9145 2 года назад +2

    there is little bit mistake except of switching terminology you can say there is trap generated in a program goto kernel mode from user mode as it is taught me by my class teacher thanks else everything you guide right sir thanks!

  • @klaik30
    @klaik30 2 года назад +1

    It is first explained that if a program is in kernel mode and crashes, the whole system crashes. Then it is defined that a mode shift happens in an instant when a system call is made. Then finaly it is shown that almost EVERYTHING is a system call. Just getting input and showing it on the screen are system calls.
    The thing is that obviously your whole system would not crash if something in that program crashes even though every action is a system call. How can that be?

  • @chintupatelyt2668
    @chintupatelyt2668 3 года назад +2

    Awesome sir Keep Go’ing

  • @khaliidcaliy1056
    @khaliidcaliy1056 5 месяцев назад

    User mode and kernel mode is cpu execution mode so,
    Context switching is can be triggered by alot of things such as interrupt handling in that case context switch may occur for example if there were process of iowaiting state then disk controller will trigger interrupt send to cpu and interrupt handler invoked causing context switching.
    Context switch is not only for kernel user mode

  • @narendrarudra3543
    @narendrarudra3543 4 года назад +5

    THANK YOU

  • @majki5900
    @majki5900 4 года назад +5

    awesome explanation, that was very helpfull :) !

  • @mohsinabdulrauf9145
    @mohsinabdulrauf9145 2 года назад +1

    Yours course was very helpful to me sir i am grateful to you

  • @kallipalliashokkumar8114
    @kallipalliashokkumar8114 3 года назад

    Explanation is very well

  • @bhagirathsinhmakwana6085
    @bhagirathsinhmakwana6085 3 года назад +3

    Sir if an user mode switch to the kernel mode then there is chances of system crashes .
    Then why there is context switching?????

  • @agamgill9563
    @agamgill9563 6 лет назад +9

    great job....thank u so much sr..

  • @humairaahmadi4759
    @humairaahmadi4759 3 года назад +4

    very clear and simple explaination .thanks alot sir for this all sach a efficiency that u have provide for us to learn it in great way. lots of love from afghanistan .❤🌻🌷🌺

  • @sona854
    @sona854 6 лет назад +2

    very nice explain

  • @atharislam282
    @atharislam282 5 лет назад +2

    i have done my lecture bcoz of u'r help

  • @ekc133
    @ekc133 2 года назад

    System Call Interfaces (SCI) are the only way to transit from User space to kernel space.Not context switching

  • @munteanionut3993
    @munteanionut3993 4 месяца назад

    Thank you for the video!
    05:20 is a bit misleading. You first mention we initially get the file name through the "Acquire Input Filename" step, but then you also mention "Then you are displaying a prompt to the screen, asking the user to enter the name of the input file". Didn't we already do step 2 at step 1? Or is this just a terminology issue and what you actually meant with the first step is that: we get the memory required to store the input first AND AFTERWARDS we get the literal input..?

  • @mukhtiarahmad7448
    @mukhtiarahmad7448 5 лет назад +4

    sir, method of explanation is excellent.........

  • @mrkiwiboy2011
    @mrkiwiboy2011 5 лет назад +5

    Hi, do you mean operating system needs system call to write completion message to screen? I am pretty sure user has nothing to do with it so please explain why you say "you" in this video all the time instead of Operating system!

  • @vijaysharma-nn9th
    @vijaysharma-nn9th 6 лет назад +2

    wonderful explanation

  • @dinushachathuranga7657
    @dinushachathuranga7657 Год назад +1

    Thanks a lot for the nice explanation❤

  • @oshadhaedirisinghe1455
    @oshadhaedirisinghe1455 7 месяцев назад +1

    Thank you

  • @NewBeliversInChrist
    @NewBeliversInChrist 2 года назад

    great explaination

  • @siddhu-Janasena
    @siddhu-Janasena 3 года назад +2

    Nice explaination Awesome. But switching from user mode to kernal mode is Known as Mode shifting based on PSW(program status word) mode bit it changes to user mode to kernal mode ??

  • @user-xm6lg9hs9i
    @user-xm6lg9hs9i 2 года назад +3

    Why do we switch from the user's stack to a kernel stack when we enter the kernel ( e.g. for a system call ) ?
    @Neso Academy

  • @pieetro_o
    @pieetro_o 4 года назад +1

    System Call. Generate Thermal Element. Form Element. Arrow Shape. Fly Straight. Discharge.

  • @章魚-l8y
    @章魚-l8y 2 года назад +4

    good explaination! However, seems all action that perform in the copying procedure are system calls (need to switch to kernal mode). Is there any example of user mode action?

  • @basitobaid6903
    @basitobaid6903 4 года назад +1

    Good explanation brother but you said program shifts from user mode to kernel mode but it's actually a process that shifts (As the running program is called the process ) so you better correct it!

  • @Bb-307
    @Bb-307 6 лет назад +3

    Amazing.. great teacher

  • @shaikzuhair8537
    @shaikzuhair8537 4 года назад +1

    Good explanation...

  • @abhinayreddy5499
    @abhinayreddy5499 6 лет назад +3

    Tqs alot sir...i like ur videos...and it helped me alot...but our exams r starting on april 16th...so plz upload bit faster...

  • @maitreyamoharil4299
    @maitreyamoharil4299 2 года назад +1

    Great explaination sir 😊
    Thank you 🙏

  • @thareejanp3933
    @thareejanp3933 Год назад

    Switching User mode to kernel mode called as System Call Interfaces (SCI) Not context switching by the time, context switching will happen while switching to another process

  • @aatmakumar4631
    @aatmakumar4631 2 года назад

    Nice class

  • @patricechaula3430
    @patricechaula3430 3 года назад +3

    I have always to stick to reading books and avoid youtube videos. Thanks for the tutorial, you explain it very well.

  • @smohammadhn
    @smohammadhn 2 года назад

    very clear explanation

  • @surajgahatraj3233
    @surajgahatraj3233 6 лет назад +2

    perfect explaination!

  • @user-zf5pt6jl7j
    @user-zf5pt6jl7j 7 месяцев назад

    There are 2 modes...
    1.user mode-mode bit 1
    2 .kernel mode-mode bit 0
    User mode:
    It doesn't contain any resourses.
    It's mode bit is 1
    If the program crashes entire system is not collapsed.hence,it's safe mode to use
    Kernel is priviliged mode
    Bit mode is 0
    If program crashes whole sys collapses
    So not safe,recommended to use

  • @sreepriyanks
    @sreepriyanks 5 лет назад +1

    well explained...thank u

  • @Dragonborn-dc4uj
    @Dragonborn-dc4uj 5 лет назад +1

    It can also take control of someone and make a army and make you a god basically

  • @amjadalsobhi7388
    @amjadalsobhi7388 4 года назад +1

    Thank you so much 🌷🌷

  • @atharislam282
    @atharislam282 5 лет назад +2

    thanku..

  • @subee128
    @subee128 7 месяцев назад

    Thanks

  • @Mohsinsadiqko
    @Mohsinsadiqko Год назад

    So perfect

  • @harishovandkar1708
    @harishovandkar1708 2 года назад

    GREAT LECTURE SIR

  • @mvakamusic758
    @mvakamusic758 3 года назад

    Well explained thanks so much

  • @rupaligaikwad20aug
    @rupaligaikwad20aug 3 года назад

    Thank you for great knowledge 🙏

  • @andreborges8640
    @andreborges8640 Год назад +3

    don't you need to close the input file?

  • @MN-lz6lf
    @MN-lz6lf 5 лет назад +3

    سبحان الله و بحمده . . ♥️
    سبحان الله العظيم . . . 💙

  • @Wickykhan
    @Wickykhan 6 лет назад +2

    thank u sooooooo much

  • @YashDEVELOPER12
    @YashDEVELOPER12 2 года назад

    Sir I have a doubt , before creating output file. Why not I can check , if the output file exist in the memory .. why we are creating output file without checking.. plz clear this doubt!

  • @manjunathkotabal
    @manjunathkotabal 2 года назад

    great lecture sir , continue doing the same

  • @nrgs-alh
    @nrgs-alh 9 месяцев назад

    Hi thanks for your amazing explanation, i have a question. It means that for all the commands and operations which are in user mode, the system call is being used? And is it related to the CPU? I mean if this happens, it takes so much time from the cpu to do these system calls.

  • @varunsood7899
    @varunsood7899 2 года назад

    Nice lectures 👍👍 sir you are clearing all my doubts

  • @soufianta8374
    @soufianta8374 Месяц назад

    I thought that a process can access its own virtual address space without “mode shifting” and hence, no system call required or do I’m wrong ??

  • @yerramachusreenu1197
    @yerramachusreenu1197 3 года назад

    Nice session .better explanation. Make some more videos

  • @senthilvadivuk4633
    @senthilvadivuk4633 Год назад

    System calls are not created by user program.. they are already available with os

  • @mohammedfaizal3577
    @mohammedfaizal3577 Год назад

    Worked, thx

  • @dhanushsivajaya1356
    @dhanushsivajaya1356 3 года назад

    Thankyou sir

  • @ahmadfallata9348
    @ahmadfallata9348 Год назад

    Thanks!

  • @hajji384
    @hajji384 2 года назад

    The Best details concepts I have ever watched. 🤩😍🎉✨

  • @juliannafotheringham7101
    @juliannafotheringham7101 Год назад

    angel, thank you

  • @linoymiz22
    @linoymiz22 5 лет назад +1

    thank you!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  • @praneshacharya6115
    @praneshacharya6115 3 года назад +1

    what does happen if crash occur during mode switching?

  • @nooratal3739
    @nooratal3739 Год назад +1

    👍👍👍

  • @ayushiyadav1
    @ayushiyadav1 3 месяца назад

    thnx sir

  • @fousizadizusa8524
    @fousizadizusa8524 6 лет назад

    Thanks alot sir 😊

  • @firepup9924
    @firepup9924 4 года назад +1

    Can anybody give an example of something which is not considered a system call?
    Seems like every task is a system call

  • @NAAR47
    @NAAR47 6 лет назад

    U r great , keep going

  • @kshitijsrivastava6148
    @kshitijsrivastava6148 6 лет назад +3

    Sir but context switching takes place between processes and it is the mode switch between kernel and user mode i think.

    • @ambilikrishnan3782
      @ambilikrishnan3782 5 лет назад

      exactly..switching from user mode to kernel mode or reverse is mode switch.

  • @user-em9mw9ch3y
    @user-em9mw9ch3y 6 лет назад +1

    how is 'acquire input file name' ahead of 'print prompt to screen' ? And shouldn't the presence of one mean the absence of the other ?