remove obsolete "mesa.library" support.
[AROS.git] / rom / task / UnLockTaskList.c
blob769a44a8abb57ae204b1dd0670085178640a24cd
1 /*
2 Copyright © 2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #define DEBUG 0
8 #include <aros/debug.h>
9 #include <exec/types.h>
10 #include <aros/libcall.h>
11 #include <proto/utility.h>
12 #include <resources/task.h>
14 #include <resources/task.h>
16 #include "taskres_intern.h"
18 /*****************************************************************************
20 NAME */
21 #include <proto/task.h>
23 AROS_LH1(void, UnLockTaskList,
25 /* SYNOPSIS */
26 AROS_LHA(ULONG, flags, D1),
28 /* LOCATION */
29 struct TaskResBase *, TaskResBase, 2, Task)
31 /* FUNCTION
32 Frees a lock on the task lists given by LockTaskList().
34 INPUTS
35 flags - the same value as given to LockTaskList().
37 RESULT
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
46 LockTaskList(), NextTaskEntry().
48 INTERNALS
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 D(bug("[TaskRes] UnLockTaskList: flags = $%lx\n", flags));
56 AROS_LIBFUNC_EXIT
57 } /* UnLockTaskList */