Solaris 10, tmux 1.7 segv

2013-02-02 Thread Adrian Haughton
Hi, I recently compiled tmux 1.7 for Solaris and it's all fine other than the key sequence 'C-b w' which causes a sigsegv: Incurred fault #6, FLTBOUNDS %pc = 0xFF0320D0 siginfo: SIGSEGV SEGV_MAPERR addr=0x Received signal #11, SIGSEGV [default] siginfo: SEGSEGV SEGV_MAPERR

Re: Solaris 10, tmux 1.7 segv

2013-02-03 Thread Adrian Haughton
It's SPARC, libevent 2.0.5, gcc, had to modify lockf to use fcntl etc. On 2 Feb 2013, at 10:48, Nicholas Marriott wrote: > Is there a core or can you attach a debugger before doing this so we can > get a backtrace? > > > > On Sat, Feb 02, 2013 at 10:03:39AM +

Re: Solaris 10, tmux 1.7 segv

2013-02-03 Thread Adrian Haughton
LL) + format_add(ft, "pane_tty", "%s", wp->tty); } void On 2 Feb 2013, at 10:48, Nicholas Marriott wrote: > Is there a core or can you attach a debugger before doing this so we can > get a backtrace? > > > > On Sat, Feb 02, 2013 at 10:03:39AM +0

Re: Solaris 10, tmux 1.7 segv

2013-02-03 Thread Adrian Haughton
John, What issues have you had - I might be able to help? Cheers, Adrian On 3 Feb 2013, at 15:44, Thomas Adam wrote: > On Sun, Feb 03, 2013 at 03:40:57PM +0000, Adrian Haughton wrote: >> It's SPARC, libevent 2.0.5, gcc, had to modify lockf to use fcntl etc. > > I real

Re: Solaris 10, tmux 1.7 segv

2013-02-04 Thread Adrian Haughton (BLOOMBERG/ LONDON)
(ft, "pane_current_path", "%s", cwd); format_add(ft, "pane_pid", "%ld", (long) wp->pid); -format_add(ft, "pane_tty", "%s", wp->tty); +if (wp->tty != NULL) +format_add(ft, "pane_tty", "%s", wp->tty); }