2 Copyright (C) 1995-2011, The AROS Development Team. All rights reserved.
6 #include <aros/debug.h>
11 LONG
Redirection_init(ShellState
*ss
)
16 void Redirection_release(ShellState
*ss
)
18 /* Close redirection files and install regular input and output streams */
21 D(bug("[Shell] Closing redirected input 0x%p, old 0x%p\n", ss
->newIn
, ss
->oldIn
));
22 SelectInput(ss
->oldIn
);
28 D(bug("[Shell] Closing redirected output 0x%p, old 0x%p\n", ss
->newOut
, ss
->oldOut
));
29 SelectOutput(ss
->oldOut
);