X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tclmain.c;h=72f3fd13c6274eaf2a2b84e642a59a78a8f60855;hb=63352c7277aa5760cca113b9a97d09716ba4e7f8;hp=a238fbaaee2a312a9924d9a084ea72b3c2f2fb28;hpb=1b8061ca3570938335e6b538bfc514504abec092;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index a238fba..72f3fd1 100644 --- a/tclmain.c +++ b/tclmain.c @@ -5,7 +5,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: tclmain.c,v $ - * Revision 1.16 1996-02-05 17:58:05 adam + * Revision 1.17 1996-02-21 10:16:21 adam + * Simplified select handling. Only one function ir_tcl_select_set has + * to be externally defined. + * + * Revision 1.16 1996/02/05 17:58:05 adam * Ported ir-tcl to use the beta releases of tcl7.5/tk4.1. * * Revision 1.15 1996/01/10 09:18:45 adam @@ -71,10 +75,9 @@ static char *fileName = NULL; /* select(2) callbacks */ struct callback { - void (*r_handle)(ClientData); - void (*w_handle)(ClientData); - void (*x_handle)(ClientData); - void *obj; + void (*handle)(ClientData, int, int, int); + int r, w, e; + ClientData obj; }; #define MAX_CALLBACK 200 @@ -107,11 +110,7 @@ int main (int argc, char **argv) fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); } for (i=0; i max_fd) - max_fd = fd; -} - -#if IRTCL_GENERIC_FILES -void ir_select_add_write (Tcl_File file, void *obj) -{ - int fd = (int) Tcl_GetFileInfo (file, NULL); -#else -void ir_select_add_write (int fd, void *obj) +void ir_tcl_select_set (void (*f)(ClientData clientData, int r, int w, int e), + int fd, ClientData clientData, int r, int w, int e) { -#endif - callback_table[fd].w_handle = ir_select_write; + callback_table[fd].handle = f; + callback_table[fd].obj = clientData; + callback_table[fd].r = r; + callback_table[fd].w = w; + callback_table[fd].e = e; if (fd > max_fd) max_fd = fd; } -#if IRTCL_GENERIC_FILES -void ir_select_remove_write (Tcl_File file, void *obj) -{ - int fd = (int) Tcl_GetFileInfo (file, NULL); -#else -void ir_select_remove_write (int fd, void *obj) -{ -#endif - callback_table[fd].w_handle = NULL; -} - -#if IRTCL_GENERIC_FILES -void ir_select_remove (Tcl_File file, void *obj) -{ - int fd = (int) Tcl_GetFileInfo (file, NULL); -#else -void ir_select_remove (int fd, void *obj) -{ -#endif - callback_table[fd].r_handle = NULL; - callback_table[fd].w_handle = NULL; - callback_table[fd].x_handle = NULL; -}