package sync1 istype Chopstick_Type is synchronized interface;type Chopstick is synchronized new Chopstick_Type with private;privateprotected type Chopstick is new Chopstick_Type withentry Pick_Up;procedure Put_Down;private
Busy :Boolean:=False;end Chopstick;end sync1;