2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH0(VOID
, UnlockPubScreenList
,
19 struct IntuitionBase
*, IntuitionBase
, 88, Intuition
)
23 Release lock made by LockPubScreenList().
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)
51 AROS_LIBBASE_EXT_DECL(struct IntuitionBase
*,IntuitionBase
)
53 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: <%s>\n",
54 FindTask(NULL
)->tc_Node
.ln_Name
));
56 ReleaseSemaphore(&GPB(IntuitionBase
)->PubScrListLock
);
58 DEBUG_UNLOCKPUBSCREENLIST(dprintf("UnLockPubScreenList: done\n"));
61 } /* UnlockPubScreenList */