r4722@vps: verhaegs | 2007-05-06 13:11:19 -0400
[cake.git] / rom / dos / unlockdoslist.c
blob60b082de15200a1a5ebd01fd064e53abf4f92158
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include <proto/exec.h>
9 #include "dos_intern.h"
11 /*****************************************************************************
13 NAME */
14 #include <proto/dos.h>
16 AROS_LH1(void, UnLockDosList,
18 /* SYNOPSIS */
19 AROS_LHA(ULONG, flags, D1),
21 /* LOCATION */
22 struct DosLibrary *, DOSBase, 110, Dos)
24 /* FUNCTION
25 Frees a lock on the dos lists given by LockDosList().
27 INPUTS
28 flags - the same value as given to LockDosList().
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
45 ReleaseSemaphore(&DOSBase->dl_DosListLock);
46 AROS_LIBFUNC_EXIT
47 } /* UnLockDosList */