mirror of
https://github.com/tmate-io/tmate.git
synced 2025-04-11 13:09:31 +02:00
This is a better fix for OS X stupidity.
This commit is contained in:
parent
3f7e2589cd
commit
620402a833
@ -1,4 +1,4 @@
|
|||||||
/* $Id: buffer-poll.c,v 1.14 2009-06-25 16:22:36 nicm Exp $ */
|
/* $Id: buffer-poll.c,v 1.15 2009-08-19 09:00:05 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -29,10 +29,9 @@ buffer_poll(struct pollfd *pfd, struct buffer *in, struct buffer *out)
|
|||||||
{
|
{
|
||||||
ssize_t n;
|
ssize_t n;
|
||||||
|
|
||||||
#ifdef HAVE_POLL
|
|
||||||
if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
|
if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
|
||||||
return (-1);
|
return (-1);
|
||||||
#endif
|
|
||||||
if (pfd->revents & POLLIN) {
|
if (pfd->revents & POLLIN) {
|
||||||
buffer_ensure(in, BUFSIZ);
|
buffer_ensure(in, BUFSIZ);
|
||||||
n = read(pfd->fd, BUFFER_IN(in), BUFFER_FREE(in));
|
n = read(pfd->fd, BUFFER_IN(in), BUFFER_FREE(in));
|
||||||
|
4
client.c
4
client.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: client.c,v 1.65 2009-08-19 08:36:45 nicm Exp $ */
|
/* $Id: client.c,v 1.66 2009-08-19 09:00:05 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -190,10 +190,8 @@ client_main(struct client_ctx *cctx)
|
|||||||
if (nfds == 0)
|
if (nfds == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
#ifdef HAVE_POLL
|
|
||||||
if (pfd.revents & (POLLERR|POLLHUP|POLLNVAL))
|
if (pfd.revents & (POLLERR|POLLHUP|POLLNVAL))
|
||||||
fatalx("socket error");
|
fatalx("socket error");
|
||||||
#endif
|
|
||||||
|
|
||||||
if (pfd.revents & POLLIN) {
|
if (pfd.revents & POLLIN) {
|
||||||
if (client_msg_dispatch(cctx) != 0)
|
if (client_msg_dispatch(cctx) != 0)
|
||||||
|
4
compat.h
4
compat.h
@ -1,4 +1,4 @@
|
|||||||
/* $Id: compat.h,v 1.10 2009-08-16 16:15:53 nicm Exp $ */
|
/* $Id: compat.h,v 1.11 2009-08-19 09:00:05 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -45,6 +45,8 @@
|
|||||||
#ifdef HAVE_POLL
|
#ifdef HAVE_POLL
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#else
|
#else
|
||||||
|
#define POLLNVAL 0
|
||||||
|
#define POLLHUP 0
|
||||||
#include "compat/bsd-poll.h"
|
#include "compat/bsd-poll.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
12
input.c
12
input.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: input.c,v 1.90 2009-08-09 17:32:06 tcunha Exp $ */
|
/* $OpenBSD: input.c,v 1.13 2009/08/18 21:41:13 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -235,6 +235,8 @@ input_init(struct window_pane *wp)
|
|||||||
ictx->saved_cy = 0;
|
ictx->saved_cy = 0;
|
||||||
|
|
||||||
input_state(ictx, input_state_first);
|
input_state(ictx, input_state_first);
|
||||||
|
|
||||||
|
ictx->was = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -252,8 +254,9 @@ input_parse(struct window_pane *wp)
|
|||||||
struct input_ctx *ictx = &wp->ictx;
|
struct input_ctx *ictx = &wp->ictx;
|
||||||
u_char ch;
|
u_char ch;
|
||||||
|
|
||||||
if (BUFFER_USED(wp->in) == 0)
|
if (BUFFER_USED(wp->in) == ictx->was)
|
||||||
return;
|
return;
|
||||||
|
wp->window->flags |= WINDOW_ACTIVITY;
|
||||||
|
|
||||||
ictx->buf = BUFFER_OUT(wp->in);
|
ictx->buf = BUFFER_OUT(wp->in);
|
||||||
ictx->len = BUFFER_USED(wp->in);
|
ictx->len = BUFFER_USED(wp->in);
|
||||||
@ -261,15 +264,11 @@ input_parse(struct window_pane *wp)
|
|||||||
|
|
||||||
ictx->wp = wp;
|
ictx->wp = wp;
|
||||||
|
|
||||||
log_debug2("entry; buffer=%zu", ictx->len);
|
|
||||||
|
|
||||||
if (wp->mode == NULL)
|
if (wp->mode == NULL)
|
||||||
screen_write_start(&ictx->ctx, wp, &wp->base);
|
screen_write_start(&ictx->ctx, wp, &wp->base);
|
||||||
else
|
else
|
||||||
screen_write_start(&ictx->ctx, NULL, &wp->base);
|
screen_write_start(&ictx->ctx, NULL, &wp->base);
|
||||||
|
|
||||||
if (ictx->off != ictx->len)
|
|
||||||
wp->window->flags |= WINDOW_ACTIVITY;
|
|
||||||
while (ictx->off < ictx->len) {
|
while (ictx->off < ictx->len) {
|
||||||
ch = ictx->buf[ictx->off++];
|
ch = ictx->buf[ictx->off++];
|
||||||
ictx->state(ch, ictx);
|
ictx->state(ch, ictx);
|
||||||
@ -278,6 +277,7 @@ input_parse(struct window_pane *wp)
|
|||||||
screen_write_stop(&ictx->ctx);
|
screen_write_stop(&ictx->ctx);
|
||||||
|
|
||||||
buffer_remove(wp->in, ictx->len);
|
buffer_remove(wp->in, ictx->len);
|
||||||
|
ictx->was = BUFFER_USED(wp->in);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
7
names.c
7
names.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: names.c,v 1.11 2009-07-02 18:26:55 nicm Exp $ */
|
/* $OpenBSD: names.c,v 1.5 2009/08/18 21:18:20 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -42,8 +42,6 @@ set_window_names(void)
|
|||||||
w = ARRAY_ITEM(&windows, i);
|
w = ARRAY_ITEM(&windows, i);
|
||||||
if (w == NULL || w->active == NULL)
|
if (w == NULL || w->active == NULL)
|
||||||
continue;
|
continue;
|
||||||
if (!options_get_number(&w->options, "automatic-rename"))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (timercmp(&tv, &w->name_timer, <))
|
if (timercmp(&tv, &w->name_timer, <))
|
||||||
continue;
|
continue;
|
||||||
@ -52,6 +50,9 @@ set_window_names(void)
|
|||||||
tv2.tv_usec = NAME_INTERVAL * 1000L;
|
tv2.tv_usec = NAME_INTERVAL * 1000L;
|
||||||
timeradd(&w->name_timer, &tv2, &w->name_timer);
|
timeradd(&w->name_timer, &tv2, &w->name_timer);
|
||||||
|
|
||||||
|
if (!options_get_number(&w->options, "automatic-rename"))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (w->active->screen != &w->active->base)
|
if (w->active->screen != &w->active->base)
|
||||||
name = NULL;
|
name = NULL;
|
||||||
else
|
else
|
||||||
|
11
server.c
11
server.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: server.c,v 1.170 2009-08-16 19:33:49 tcunha Exp $ */
|
/* $OpenBSD: server.c,v 1.23 2009/08/18 21:37:04 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -319,10 +319,8 @@ server_main(int srv_fd)
|
|||||||
pfd = pfds;
|
pfd = pfds;
|
||||||
|
|
||||||
/* Handle server socket. */
|
/* Handle server socket. */
|
||||||
#ifdef HAVE_POLL
|
|
||||||
if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
|
if (pfd->revents & (POLLERR|POLLNVAL|POLLHUP))
|
||||||
fatalx("lost server socket");
|
fatalx("lost server socket");
|
||||||
#endif
|
|
||||||
if (pfd->revents & POLLIN) {
|
if (pfd->revents & POLLIN) {
|
||||||
server_accept_client(srv_fd);
|
server_accept_client(srv_fd);
|
||||||
continue;
|
continue;
|
||||||
@ -1111,13 +1109,12 @@ void
|
|||||||
server_check_window(struct window *w)
|
server_check_window(struct window *w)
|
||||||
{
|
{
|
||||||
struct window_pane *wp, *wq;
|
struct window_pane *wp, *wq;
|
||||||
|
struct options *oo = &w->options;
|
||||||
struct client *c;
|
struct client *c;
|
||||||
struct session *s;
|
struct session *s;
|
||||||
struct winlink *wl;
|
struct winlink *wl;
|
||||||
u_int i, j;
|
u_int i, j;
|
||||||
int destroyed, flag;
|
int destroyed;
|
||||||
|
|
||||||
flag = options_get_number(&w->options, "remain-on-exit");
|
|
||||||
|
|
||||||
destroyed = 1;
|
destroyed = 1;
|
||||||
|
|
||||||
@ -1130,7 +1127,7 @@ server_check_window(struct window *w)
|
|||||||
* the window to be destroyed (or it'll close when the last
|
* the window to be destroyed (or it'll close when the last
|
||||||
* pane dies).
|
* pane dies).
|
||||||
*/
|
*/
|
||||||
if (wp->fd == -1 && !flag) {
|
if (wp->fd == -1 && !options_get_number(oo, "remain-on-exit")) {
|
||||||
layout_close_pane(wp);
|
layout_close_pane(wp);
|
||||||
window_remove_pane(w, wp);
|
window_remove_pane(w, wp);
|
||||||
server_redraw_window(w);
|
server_redraw_window(w);
|
||||||
|
3
tmux.h
3
tmux.h
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tmux.h,v 1.418 2009-08-16 19:26:49 tcunha Exp $ */
|
/* $OpenBSD: tmux.h,v 1.86 2009/08/18 21:41:13 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -610,6 +610,7 @@ struct input_ctx {
|
|||||||
u_char *buf;
|
u_char *buf;
|
||||||
size_t len;
|
size_t len;
|
||||||
size_t off;
|
size_t off;
|
||||||
|
size_t was;
|
||||||
|
|
||||||
struct grid_cell cell;
|
struct grid_cell cell;
|
||||||
|
|
||||||
|
4
tty.c
4
tty.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tty.c,v 1.128 2009-08-16 19:31:37 tcunha Exp $ */
|
/* $Id: tty.c,v 1.129 2009-08-19 09:00:06 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -252,10 +252,8 @@ tty_detect_utf8(struct tty *tty)
|
|||||||
}
|
}
|
||||||
if (nfds == 0)
|
if (nfds == 0)
|
||||||
break;
|
break;
|
||||||
#ifdef HAVE_POLL
|
|
||||||
if (pfd.revents & (POLLERR|POLLNVAL|POLLHUP))
|
if (pfd.revents & (POLLERR|POLLNVAL|POLLHUP))
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
if (!(pfd.revents & POLLIN))
|
if (!(pfd.revents & POLLIN))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user