Some hopefully good changes to get IOs off of halloc

This commit is contained in:
ridiculousfish
2012-02-09 18:43:36 -08:00
parent 646240fc54
commit e5ff5f7484
10 changed files with 44 additions and 96 deletions

View File

@@ -950,11 +950,11 @@ void exec( parser_t &parser, job_t *j )
{
if( j->io )
{
j->io = io_add( io_duplicate( j, parser.block_io), j->io );
j->io = io_add( io_duplicate(parser.block_io), j->io );
}
else
{
j->io=io_duplicate( j, parser.block_io);
j->io=io_duplicate(parser.block_io);
}
}