Re: tmux, libevent2, hanging and out redirection

2011-08-27 Thread Nicholas Marriott
On Sat, Aug 27, 2011 at 10:30:06PM +0900, Vladimir Lomov wrote: > Hello, > ** Nicholas Marriott [2011-08-27 00:26:52 +0100]: > > > If you use libevent 2.x, you STILL need to set EVENT_NOEPOLL=1. > > > The hanging bug is an epoll bug in the Linux kernel, so you have to make > > libevent use poll o

Re: Is has-session interpret 'target-session' as a pattern?

2011-08-27 Thread Nicholas Marriott
This is working correctly, tool is the leading prefix of tools so tmux will choose that session. Use tmux ls|grep -q '^tool: ' if you want to match exact name. On Sat, Aug 27, 2011 at 11:15:54PM +0900, Vladimir Lomov wrote: > Hello, > > according to man page `has-session' command takes as argu

Re: tmux equivalent of "nonblock on"

2011-08-27 Thread Nicholas Marriott
What does it do? On Sat, Aug 27, 2011 at 08:22:56PM +0100, Chris Hills wrote: > Sometimes when my ssh connection drops, I reconnect to find my irc > client has hung. The screen solution to this is to set "nonblock on" for > the window. What is the tmux equivalent command? > > Thanks, > > Chris

tmux equivalent of "nonblock on"

2011-08-27 Thread Chris Hills
Sometimes when my ssh connection drops, I reconnect to find my irc client has hung. The screen solution to this is to set "nonblock on" for the window. What is the tmux equivalent command? Thanks, Chris -- EMC VNX: the

Is has-session interpret 'target-session' as a pattern?

2011-08-27 Thread Vladimir Lomov
Hello, according to man page `has-session' command takes as argument (after -t) a name of session. But in my example $ tmux -2 -u -L docs ls editors: 4 windows (created...) [...] tools: 3 windows (created...) [...] vcs: 2 windows (created...) [...] both calls $ tmux -2 -u -L docs has-session

Re: tmux, libevent2, hanging and out redirection

2011-08-27 Thread Vladimir Lomov
Hello, ** Nicholas Marriott [2011-08-27 00:26:52 +0100]: > If you use libevent 2.x, you STILL need to set EVENT_NOEPOLL=1. > The hanging bug is an epoll bug in the Linux kernel, so you have to make > libevent use poll or select instead. > The reason you can't just do this with libevent 1.4 is be