use log2 from stdc
[AROS.git] / workbench / libs / camd / unlockcamd.c
blob33a11ca20b3c50259d28ea6e1b6217eab280baa0
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include <proto/exec.h>
11 #include "camd_intern.h"
13 /*****************************************************************************
15 NAME */
17 AROS_LH1(void, UnlockCAMD,
19 /* SYNOPSIS */
20 AROS_LHA(APTR, lock, A0),
22 /* LOCATION */
23 struct CamdBase *, CamdBase, 6, Camd)
25 /* FUNCTION
26 UnLocks the internal lists in camd.
28 INPUTS
29 Pointer received from LockCAMD.
31 RESULT
32 APTR to send to UnlockCAMD
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 LockCAMD()
43 INTERNALS
45 HISTORY
47 2001-01-12 ksvalast first created
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 ReleaseSemaphore((struct SignalSemaphore *)lock);
55 AROS_LIBFUNC_EXIT