From 5be38f2b3afbbf8985bad78a9d773730c7b8d009 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Wed, 4 Nov 2009 22:46:25 +0000 Subject: Sync OpenBSD patchset 485: Add an activity time for clients, like for sessions, and change session and client lookup to pick the most recently used rather than the most recently created - this is much more useful when used interactively and (because the activity time is set at creation) should have no effect on source-file. Based on a problem reported by Jan Johansson. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 04914387..ad3ee870 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.495 2009-11-04 22:44:01 tcunha Exp $ */ +/* $Id: tmux.h,v 1.496 2009-11-04 22:46:25 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1062,6 +1062,7 @@ struct client { struct imsgbuf ibuf; struct timeval creation_time; + struct timeval activity_time; struct environ environ; -- cgit