diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-16 22:24:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-16 22:24:55 +0000 |
commit | be4e4dd129be0242558cbefa0c3a1f256120a5ae (patch) | |
tree | 5bcabb0e47f05b5cebf38938734c4acc4c1b1696 /usr.bin/tmux/tmux.h | |
parent | 8073e621469aafeb655b353c980cc9c2e85c81a3 (diff) |
Rename cmd_q dead flag to a general flags bitmask (will be more flags later).
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 16e01fcae01..11b861a0e5c 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.560 2015/09/14 11:57:22 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.561 2015/09/16 22:24:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1305,7 +1305,8 @@ TAILQ_HEAD(cmd_q_items, cmd_q_item); /* Command queue. */ struct cmd_q { int references; - int dead; + int flags; +#define CMD_Q_DEAD 0x1 struct client *client; int client_exit; |