From 0ad2a46f33944b5fedbda54167af5739c8c5ed84 Mon Sep 17 00:00:00 2001 From: jilles Date: Thu, 25 Jul 2013 15:08:41 +0000 Subject: sh: Remove mkinit. Replace the RESET blocks with regular functions and a reset() function that calls them all. This code generation tool is unusual and does not appear to provide much benefit. I do not think isolating the knowledge about which modules need to be reset is worth an almost 500-line build tool and wider scope for variables used by the reset functions. Also, relying on reset functions is often wrong: the cleanup should be done in exception handlers so that no stale state remains after 'command eval' and the like. --- bin/sh/redir.h | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/sh/redir.h') diff --git a/bin/sh/redir.h b/bin/sh/redir.h index ad44c4e..d012440 100644 --- a/bin/sh/redir.h +++ b/bin/sh/redir.h @@ -40,6 +40,7 @@ union node; void redirect(union node *, int); void popredir(void); +void resetredir(void); int fd0_redirected_p(void); void clearredir(void); -- cgit v1.1