Initial set of changes working to make fish robust against running out of file descriptors

This commit is contained in:
ridiculousfish
2013-01-30 02:22:38 -08:00
parent ea8c6bc15e
commit 1879dc4b59
10 changed files with 181 additions and 83 deletions

View File

@@ -164,9 +164,9 @@ struct event_block_t : public block_t
struct function_block_t : public block_t
{
process_t *process;
const process_t *process;
wcstring name;
function_block_t(process_t *p, const wcstring &n, bool shadows);
function_block_t(const process_t *p, const wcstring &n, bool shadows);
};
struct source_block_t : public block_t