Minor fixes to comments.
[AROS.git] / rom / exec / remresetcallback.c
blob3b5c6a430043922827460d8061f5f7efa3e74a6a
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Remove reset callback from the internal list
6 Lang: english
7 */
9 #include <exec/interrupts.h>
10 #include <proto/exec.h>
12 #include "exec_intern.h"
14 /*****************************************************************************
16 NAME */
18 AROS_LH1I(void, RemResetCallback,
20 /* SYNOPSIS */
21 AROS_LHA(struct Interrupt *, interrupt, A0),
23 /* LOCATION */
24 struct ExecBase *, SysBase, 168, Exec)
26 /* FUNCTION
27 Remove reset handler previously installed using AddResetCallBack()
29 INPUTS
30 interrupt - A pointer to an Interrupt structure
32 RESULT
33 None.
35 NOTES
36 This function is compatible with AmigaOS v4.
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 ******************************************************************************/
48 AROS_LIBFUNC_INIT
50 Remove(&interrupt->is_Node);
52 AROS_LIBFUNC_EXIT