Skip to content
Snippets Groups Projects
Commit 8fbb3642 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now calls cleanup_backend() on exit.

Rev: src/main.c:1.47
parent 4d880335
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
||| See the files COPYING and DISCLAIMER for more information. ||| See the files COPYING and DISCLAIMER for more information.
\*/ \*/
#include "global.h" #include "global.h"
RCSID("$Id: main.c,v 1.46 1998/04/06 04:27:06 hubbe Exp $"); RCSID("$Id: main.c,v 1.47 1998/04/06 17:28:18 grubba Exp $");
#include "fdlib.h" #include "fdlib.h"
#include "backend.h" #include "backend.h"
#include "module.h" #include "module.h"
...@@ -403,6 +403,7 @@ void low_exit_main(void) ...@@ -403,6 +403,7 @@ void low_exit_main(void)
void cleanup_pike_types(void); void cleanup_pike_types(void);
void cleanup_program(void); void cleanup_program(void);
void cleanup_compiler(void); void cleanup_compiler(void);
void cleanup_backend(void);
th_cleanup(); th_cleanup();
exit_dynamic_load(); exit_dynamic_load();
...@@ -414,6 +415,7 @@ void low_exit_main(void) ...@@ -414,6 +415,7 @@ void low_exit_main(void)
cleanup_pike_types(); cleanup_pike_types();
cleanup_program(); cleanup_program();
cleanup_compiler(); cleanup_compiler();
cleanup_backend();
do_gc(); do_gc();
free_svalue(& throw_value); free_svalue(& throw_value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment