2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <proto/exec.h>
10 #include "realtime_intern.h"
12 /*****************************************************************************
15 #include <libraries/realtime.h>
17 AROS_LH1(VOID
, UnlockRealTime
,
21 AROS_LHA(APTR
, lockHandle
, A0
),
25 struct Library
*, RealTimeBase
, 6, RealTime
)
29 Unlock a RealTime.library internal semaphore.
33 lockHandle -- Handle returned by LockRealTime(); may be NULL.
51 26.7.99 SDuvan implemented
53 ******************************************************************************/
58 if (lockHandle
== NULL
)
63 ReleaseSemaphore((struct SignalSemaphore
*)lockHandle
);
66 } /* UnlockRealTime */