Assignments 3
Team 1: blocked processes in blocking_device Read and experiment phase 3 work in http://linux-kernel-lab.blogspot.com/2018/06/blocking-device.html Make the pid of all processes blocked in blocking_device visible in /sys/show_blocked. Test it. You may run "read_test &" as many times as you wish. Team 2: on release Read and experiment phase 3 work in http://linux-kernel-lab.blogspot.com/2018/06/blocking-device.html When a user types in the keyboard, he constantly presses and releases key. The normal behavior is to get the character as soon as the key is pressed. If it takes sometime to release, then the key is repeated many times until it is released. Let us change its behavior. Suppress the key repetition when the user doesn't release it. Get the character when the key is released and not pressed. Team 3: no key repetition Read and experiment phase 3 work in http://linux-kernel-lab.blogspot.com/2018/06/blocking-device.html Whe...