2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Desc: Release the lock on the CurrentBinding data.
8 #include "expansion_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
14 #include <proto/expansion.h>
16 AROS_LH0(void, ReleaseConfigBinding
,
22 struct ExpansionBase
*, ExpansionBase
, 21, Expansion
)
25 This function will release the lock obtained by
26 ObtainConfigBinding(). It will release the SignalSemaphore,
27 and allow others to bind to drivers.
47 27-11-96 digulla automatically created from
48 expansion_lib.fd and clib/expansion_protos.h
50 *****************************************************************************/
54 ReleaseSemaphore(&IntExpBase(ExpansionBase
)->eb_BindSemaphore
);
57 } /* ReleaseConfigBinding */