diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:54:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-04 23:54:57 +0000 |
commit | 44d6a2c435ab68df25ed7b14473e6f69870e8a9a (patch) | |
tree | a89bce807ac501ffc4efdc7ef1d63dadde7212c3 /window.c | |
parent | 946ed972734f5c95f67e30aff99a58de0179b2d5 (diff) | |
download | rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.tar.gz rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.tar.bz2 rtmux-44d6a2c435ab68df25ed7b14473e6f69870e8a9a.zip |
Change window name change to use a timer event rather than a gettimeofday()
check every loop.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -212,7 +212,7 @@ window_create1(u_int sx, u_int sy) struct window *w; u_int i; - w = xmalloc(sizeof *w); + w = xcalloc(1, sizeof *w); w->name = NULL; w->flags = 0; @@ -225,6 +225,8 @@ window_create1(u_int sx, u_int sy) w->sx = sx; w->sy = sy; + queue_window_name(w); + options_init(&w->options, &global_w_options); for (i = 0; i < ARRAY_LENGTH(&windows); i++) { @@ -278,6 +280,8 @@ window_destroy(struct window *w) if (w->layout_root != NULL) layout_free(w); + evtimer_del(&w->name_timer); + options_free(&w->options); window_destroy_panes(w); @@ -480,7 +484,6 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell, ARRAY_DECL(, char *) varlist; struct environ_entry *envent; const char *ptr; - struct timeval tv; struct termios tio2; u_int i; @@ -508,12 +511,6 @@ window_pane_spawn(struct window_pane *wp, const char *cmd, const char *shell, ws.ws_col = screen_size_x(&wp->base); ws.ws_row = screen_size_y(&wp->base); - if (gettimeofday(&wp->window->name_timer, NULL) != 0) - fatal("gettimeofday failed"); - tv.tv_sec = 0; - tv.tv_usec = NAME_INTERVAL * 1000L; - timeradd(&wp->window->name_timer, &tv, &wp->window->name_timer); - switch (wp->pid = forkpty(&wp->fd, wp->tty, NULL, &ws)) { case -1: wp->fd = -1; |