Minor fixes to comments.
[AROS.git] / rom / intuition / unlockpubscreenlist.c
blobf2c226a48bf3fe64565ce6ed568df27c9f0fa474
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 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: <%s>\n",
51 FindTask(NULL)->tc_Node.ln_Name));
53 ReleaseSemaphore(&GetPrivIBase(IntuitionBase)->PubScrListLock);
55 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: done\n"));
57 AROS_LIBFUNC_EXIT
58 } /* UnlockPubScreenList */