2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
8 #include <aros/kernel.h>
9 #include <proto/exec.h>
11 #include <kernel_base.h>
13 /*****************************************************************************
16 #include <proto/kernel.h>
18 AROS_LH1(void, KrnDeleteContext
,
21 AROS_LHA(void *, context
, A0
),
24 struct KernelBase
*, KernelBase
, 19, Kernel
)
27 Free CPU context storage area
30 context - a pointer to a CPU context storage previously allocated using
47 ******************************************************************************/
52 * This is actually a pair to krnAllocCPUContext().
53 * Needs to be reimplemented on a per-architecture basis if needed.
55 FreeMem(context
, KernelBase
->kb_ContextSize
);