Created
July 3, 2019 15:07
-
-
Save TommyWu-fdgkhdkgh/b422e19742db9cc8c30c45de8c8f3a36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| do{ | |
| /* entry section */ | |
| wait(chopstick[i]); | |
| wait(chopstick[(i+1) % 5]); | |
| /* eat for a while */ | |
| /*critical section*/ | |
| /* exit section */ | |
| signal(chopstick[i]); | |
| signal(chopstick[(i+1) % 5]); | |
| /* think for awhile */ | |
| /* remainder section */ | |
| }while(true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment