diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-30 20:41:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-30 20:41:08 +0000 |
commit | 436f3b357ee6a960621c319b7904aeed1cccead4 (patch) | |
tree | d5ef34bc8cc43d81c3582645b61724ca2200df47 /tmux.h | |
parent | ba89a048edeebb34f03a46b5ecc789655f7d223d (diff) | |
download | rtmux-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.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |