Support rastport clipping rectangle for layerless rastports
[tangerine.git] / rom / dos / unlockdoslist.c
blob6ecdce0524078d2ea014d65299f1b554cc5598aa
1 /*
2 Copyright © 1995-2001, 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 AROS_LIBBASE_EXT_DECL(struct DosLibrary *,DOSBase)
46 ReleaseSemaphore(&DOSBase->dl_DosListLock);
47 AROS_LIBFUNC_EXIT
48 } /* UnLockDosList */