add new stubs for dealing with the "task list(s)"
[AROS.git] / rom / task / LockTaskList.c
blobf3182479a4c2aa8dc67f3850fb1dd80f0b8e406c
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(struct TaskList *, LockTaskList,
25 /* SYNOPSIS */
26 AROS_LHA(ULONG, flags, D1),
28 /* LOCATION */
29 struct TaskResBase *, TaskResBase, 1, Task)
31 /* FUNCTION
33 INPUTS
34 flags -
36 RESULT
37 Handle to the task list. This is not a direct pointer
38 to the first list element but to a pseudo element instead.
40 NOTES
42 EXAMPLE
44 BUGS
46 SEE ALSO
47 UnLockTaskList(), NextTaskEntry().
49 INTERNALS
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
55 D(bug("LockTaskList: flags = $%lx\n", flags));
57 return NULL;
59 AROS_LIBFUNC_EXIT
60 } /* LockTaskList */