2 Copyright © 1995-2007, 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)
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"));
60 } /* UnlockPubScreenList */