Lines Matching +full:de +full:- +full:active
10 Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>
11 ---
13 sched.h | 48 ------------------------------------------------
14 screen.h | 2 +-
15 3 files changed, 49 insertions(+), 49 deletions(-)
19 diff --git a/eventqueue.h b/eventqueue.h
22 --- /dev/null
24 @@ -0,0 +1,48 @@
26 + * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
27 + * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
30 + * Copyright (c) 1993-2002, 2003, 2005, 2006, 2007
31 + * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
32 + * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
48 + * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
64 + int active; /* in fdset */
65 + int *condpos; /* only active if condpos - condneg > 0 */
73 diff --git a/sched.h b/sched.h
76 --- a/sched.h
78 @@ -1,48 +0,0 @@
79 -/* Copyright (c) 2008, 2009
80 - * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
81 - * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
82 - * Micah Cowan (micah@cowan.name)
83 - * Sadrul Habib Chowdhury (sadrul@users.sourceforge.net)
84 - * Copyright (c) 1993-2002, 2003, 2005, 2006, 2007
85 - * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
86 - * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
87 - * Copyright (c) 1987 Oliver Laumann
88 - *
89 - * This program is free software; you can redistribute it and/or modify
90 - * it under the terms of the GNU General Public License as published by
91 - * the Free Software Foundation; either version 3, or (at your option)
92 - * any later version.
93 - *
94 - * This program is distributed in the hope that it will be useful,
95 - * but WITHOUT ANY WARRANTY; without even the implied warranty of
96 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
97 - * GNU General Public License for more details.
98 - *
99 - * You should have received a copy of the GNU General Public License
100 - * along with this program (see the file COPYING); if not, see
101 - * https://www.gnu.org/licenses/, or contact Free Software Foundation, Inc.,
102 - * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
103 - *
104 - ****************************************************************
105 - * $Id$ GNU
106 - */
107 -
108 -struct event
109 -{
110 - struct event *next;
111 - void (*handler) __P((struct event *, char *));
112 - char *data;
113 - int fd;
114 - int type;
115 - int pri;
116 - struct timeval timeout;
117 - int queued; /* in evs queue */
118 - int active; /* in fdset */
119 - int *condpos; /* only active if condpos - condneg > 0 */
120 - int *condneg;
121 -};
122 -
123 -#define EV_TIMEOUT 0
124 -#define EV_READ 1
125 -#define EV_WRITE 2
126 -#define EV_ALWAYS 3
127 diff --git a/screen.h b/screen.h
129 --- a/screen.h
131 @@ -43,7 +43,7 @@
135 -#include "sched.h"
140 --