diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-01-08 01:52:36 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-01-08 01:52:36 +0000 |
commit | 69cb1f830e4fd2282ddcbc7ee2bbe30069b9e4cd (patch) | |
tree | 49efff28238bbba524974db0512859a310d0b09c /tmux.h | |
parent | 703160b5d6b64e45a684894260693c60b5524d51 (diff) | |
download | rtmux-69cb1f830e4fd2282ddcbc7ee2bbe30069b9e4cd.tar.gz rtmux-69cb1f830e4fd2282ddcbc7ee2bbe30069b9e4cd.tar.bz2 rtmux-69cb1f830e4fd2282ddcbc7ee2bbe30069b9e4cd.zip |
Move all calls to fcntl(...O_NONBLOCK) into a function and clear the
flag on the stdio file descriptors before closing them (fixes things
like "tmux ls && cat").
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1308,6 +1308,7 @@ void logfile(const char *); const char *getshell(void); int checkshell(const char *); int areshell(const char *); +void setblocking(int, int); __dead void shell_exec(const char *, const char *); /* cfg.c */ |