fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / src / exit.c
blobf0acd3596ee537a7dfe529e49f7cfac3c870aeed
1 /*
2 Copyright (C) 2001-2010, Parrot Foundation.
3 $Id$
5 =head1 NAME
7 src/exit.c - Exit Handling
9 =head1 DESCRIPTION
11 Parrot's version of C<exit()>, C<on_exit()>, and friends.
13 C<Parrot_on_exit()> allows you register exit handlers which will be
14 called by C<Parrot_exit()> when the interpreter exits.
16 =head2 Functions
18 =over 4
20 =cut
24 #include <stdlib.h>
25 #include "parrot/parrot.h"
27 /* HEADERIZER HFILE: include/parrot/exit.h */
31 =item C<void Parrot_on_exit(PARROT_INTERP, exit_handler_f function, void *arg)>
33 Register the specified function to be called on exit.
35 =cut
39 PARROT_EXPORT
40 void
41 Parrot_on_exit(PARROT_INTERP, ARGIN(exit_handler_f function), ARGIN_NULLOK(void *arg))
43 ASSERT_ARGS(Parrot_on_exit)
45 handler_node_t * const new_node = mem_internal_allocate_typed(handler_node_t);
47 new_node->function = function;
48 new_node->arg = arg;
49 new_node->next = interp->exit_handler_list;
50 interp->exit_handler_list = new_node;
55 =item C<void Parrot_exit(PARROT_INTERP, int status)>
57 Exit, calling any registered exit handlers.
59 =cut
63 PARROT_EXPORT
64 PARROT_DOES_NOT_RETURN
65 PARROT_COLD
66 void
67 Parrot_exit(PARROT_INTERP, int status)
69 ASSERT_ARGS(Parrot_exit)
70 /* call all the exit handlers */
71 /* we are well "below" the runloop now, where lo_var_ptr
72 * is set usually - exit handlers may run some resource-hungry
73 * stuff like printing profile stats - a GC run would kill
74 * resources
75 * http://rt.perl.org/rt3/Ticket/Display.html?id=46405 (resolved)
78 * we don't allow new exit_handlers being installed inside exit handlers
79 * - do we?
80 * and: interp->exit_handler_list is gone, after the last exit handler
81 * (Parrot_really_destroy) has run
83 handler_node_t *node = interp->exit_handler_list;
85 Parrot_block_GC_mark(interp);
86 Parrot_block_GC_sweep(interp);
88 while (node) {
89 handler_node_t * const next = node->next;
91 (node->function)(interp, status, node->arg);
92 mem_internal_free(node);
93 node = next;
96 exit(status);
101 =back
103 =head1 SEE ALSO
105 F<include/parrot/exit.h> and F<t/src/exit.t>.
107 =cut
113 * Local variables:
114 * c-file-style: "parrot"
115 * End:
116 * vim: expandtab shiftwidth=4: