aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-12-30 20:41:08 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-12-30 20:41:08 +0000
commit436f3b357ee6a960621c319b7904aeed1cccead4 (patch)
treed5ef34bc8cc43d81c3582645b61724ca2200df47 /tmux.h
parentba89a048edeebb34f03a46b5ecc789655f7d223d (diff)
downloadrtmux-436f3b357ee6a960621c319b7904aeed1cccead4.tar.gz
rtmux-436f3b357ee6a960621c319b7904aeed1cccead4.tar.bz2
rtmux-436f3b357ee6a960621c319b7904aeed1cccead4.zip
epoll on Linux is broken with /dev/null so it needs to be disabled.
Instead of adding another BROKEN_* define, move event_init into osdep-*.c.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 0642401c..c8bfd274 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.591 2010-12-22 15:36:44 tcunha Exp $ */
+/* $Id: tmux.h,v 1.592 2010-12-30 20:41:08 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -2004,7 +2004,8 @@ int utf8_open(struct utf8_data *, u_char);
int utf8_append(struct utf8_data *, u_char);
/* osdep-*.c */
-char *osdep_get_name(int, char *);
+char *osdep_get_name(int, char *);
+struct event_base *osdep_event_init(void);
/* log.c */
void log_open_tty(int);