Minor fixes to comments.
[AROS.git] / rom / exec / alert_cpu.c
blobf637efd377e104897e59e69010321d17230e2d5a
1 /*
2 Copyright © 2010-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: CPU context parsing routines. Dummy nonfunctional template.
6 See code in arch/i386-all/exec/alert_cpu.c for working example.
7 Lang: english
8 */
10 #include <string.h>
12 #include "exec_intern.h"
13 #include "exec_util.h"
15 char *FormatCPUContext(char *buffer, struct ExceptionContext *ctx,
16 struct ExecBase *SysBase)
18 char *buf;
20 buf = Alert_AddString(buffer, "Not implemented");
21 *buf = 0;
23 return buf;
26 /* Unwind a single stack frame */
27 APTR UnwindFrame(APTR fp, APTR *caller)
29 return NULL;