Minor fixes to comments.
[AROS.git] / rom / exec / preparecontext.c
blob8a9d9e37ea5ca593900257e4d7fde561130aa9f1
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: PrepareContext() - Prepare a task context for dispatch.
6 Lang: english
7 */
9 #include <exec/execbase.h>
10 #include <exec/memory.h>
11 #include <utility/tagitem.h>
13 #include "exec_util.h"
15 BOOL PrepareContext(struct Task *task, APTR entryPoint, APTR fallBack,
16 const struct TagItem *tagList, struct ExecBase *SysBase)
19 * The actual implementation of this function is CPU-specific.
20 * Please see files in arch/<cpu>-all/exec/ for working examples.
22 return FALSE;
23 } /* PrepareContext() */