2 Copyright © 1995-2014, 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.
46 *****************************************************************************/
50 ReleaseSemaphore(&IntExpBase(ExpansionBase
)->BindSemaphore
);
53 } /* ReleaseConfigBinding */