[t][TT #1119] Convert t/op/bitwise.t to PIR
[parrot.git] / src / exit.c
blob45d1bc4b3ff51319f8f988113b75c188d7bf7922
1 /*
2 Copyright (C) 2001-2009, 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, NOTNULL(exit_handler_f function), ARGIN_NULLOK(void *arg))
43 ASSERT_ARGS(Parrot_on_exit)
44 /* RT#46403 we might want locking around the list access. I'm sure this
45 * will be the least of the threading issues. */
47 handler_node_t * const new_node = mem_allocate_typed(handler_node_t);
49 new_node->function = function;
50 new_node->arg = arg;
51 new_node->next = interp->exit_handler_list;
52 interp->exit_handler_list = new_node;
57 =item C<void Parrot_exit(PARROT_INTERP, int status)>
59 Exit, calling any registered exit handlers.
61 =cut
65 PARROT_EXPORT
66 PARROT_DOES_NOT_RETURN
67 void
68 Parrot_exit(PARROT_INTERP, int status)
70 ASSERT_ARGS(Parrot_exit)
71 /* call all the exit handlers */
72 /* we are well "below" the runloop now, where lo_var_ptr
73 * is set usually - exit handlers may run some resource-hungry
74 * stuff like printing profile stats - a GC run would kill
75 * resources - RT#46405 reset stacktop or better disable GC
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_sys_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 =head1 HISTORY
109 Initial version by Josh Wilmes.
111 =cut
117 * Local variables:
118 * c-file-style: "parrot"
119 * End:
120 * vim: expandtab shiftwidth=4: