Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
sync1.adb
blob: 08be6395d68125738daa9b0cd6436110e6765a0e [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
body sync1
is
protected
body
Chopstick
is
entry
Pick_Up
when
not
Busy
is
begin
Busy
:=
True
;
end
Pick_Up
;
procedure
Put_Down
is
begin
Busy
:=
False
;
end
Put_Down
;
end
Chopstick
;
end
sync1
;