From: ian Date: Mon, 12 May 2008 22:56:38 +0000 (+0000) Subject: remove obsolete file X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=d1216d5c33c3047568f6e22d18300b06b40fb45b;p=trains.git remove obsolete file --- diff --git a/hostside/multiplex.h b/hostside/multiplex.h deleted file mode 100644 index 0c66f2c..0000000 --- a/hostside/multiplex.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * multiplexer daemon - * declarations - */ - -#ifndef MULTIPLEX_H -#define MULTIPLEX_H - -#include "daemons.h" - -/*---------- from output.c ----------*/ - -typedef unsigned long Selector; -#include "selectors.h" - -void sovprintf(Selector sel, const char *fmt, va_list al) - __attribute__((format(printf,2,0))); -void soprintf(Selector sel, const char *fmt, ...) - __attribute__((format(printf,2,3))); -void sowrite(Selector sel, const char *data, int l); - -void serial_transmit(const PicInsn *pi); - -void output_hex(Selector sel, const char *work, - const Byte *command, int length); - - - - - unredacted - -struct ClientList { Client *head, *tail; }; -extern struct ClientList clients; - -struct Client { - CommandInput ci; - Client *back, *next; - Selector sel; -}; - - - - -#endif /*MULTIPLEX_H*/