CopyToAFS: Remove dead FMF_* flags
[AROS.git] / rom / intuition / unlockpubscreenlist.c
blobbde0c98227276ba004b22ee2e5130d00c7ec93c1
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <proto/intuition.h>
14 AROS_LH0(VOID, UnlockPubScreenList,
16 /* SYNOPSIS */
18 /* LOCATION */
19 struct IntuitionBase *, IntuitionBase, 88, Intuition)
21 /* FUNCTION
23 Release lock made by LockPubScreenList().
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 LockPubScreenList()
39 INTERNALS
41 HISTORY
42 21-06-98 SDuvan Implemented
43 29-10-95 digulla automatically created from
44 intuition_lib.fd and clib/intuition_protos.h
46 *****************************************************************************/
47 #define GPB(x) GetPrivIBase(x)
50 AROS_LIBFUNC_INIT
52 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: <%s>\n",
53 FindTask(NULL)->tc_Node.ln_Name));
55 ReleaseSemaphore(&GPB(IntuitionBase)->PubScrListLock);
57 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: done\n"));
59 AROS_LIBFUNC_EXIT
60 } /* UnlockPubScreenList */