dthain / basekernel

A simple OS kernel for research, teaching, and fun.
GNU General Public License v2.0
798 stars 110 forks source link

wait command is not working #264

Closed shivamlakhtariya closed 3 years ago

shivamlakhtariya commented 4 years ago

when we use wait command with any value ( i.g. wait 112 ). Its just stop working and we have to restart the whole OS for further execution.

dthain commented 3 years ago

The expected behavior of the wait command is that it blocks execution until a child process completes. See https://github.com/dthain/basekernel/wiki/Processes for more information.