Final removal of halloc. It's like Christmas Morning.

This commit is contained in:
ridiculousfish
2012-02-09 19:26:44 -08:00
parent a38490429b
commit 910863e9ea
23 changed files with 78 additions and 618 deletions

View File

@@ -49,8 +49,6 @@
#include "exec.h"
#include "event.h"
#include "path.h"
#include "halloc.h"
#include "halloc_util.h"
#include "history.h"
/**
@@ -796,7 +794,6 @@ int main( int argc, char **argv )
say( L"Lines beginning with '(ignore):' are not errors, they are warning messages\ngenerated by the fish parser library when given broken input, and can be\nignored. All actual errors begin with 'Error:'." );
set_main_thread();
proc_init();
halloc_util_init();
event_init();
function_init();
builtin_init();
@@ -827,6 +824,5 @@ int main( int argc, char **argv )
wutil_destroy();
event_destroy();
proc_destroy();
halloc_util_destroy();
}