* Europagate, 1995
*
* $Log: eti.c,v $
- * Revision 1.8 1995/04/20 15:12:24 adam
+ * Revision 1.9 1995/04/21 16:37:43 adam
+ * Parent (eti) creates BOTH FIFOs. dtbsun is more happy now.
+ *
+ * Revision 1.8 1995/04/20 15:12:24 adam
* Minor hacks really.
*
* Revision 1.7 1995/04/19 16:01:57 adam
#include <setjmp.h>
#include <signal.h>
+#include <sys/file.h>
+#include <sys/stat.h>
+
#include <gw-log.h>
#include <gw-db.h>
#include <gip.h>
r = gipc_open (gip, fifo_server_name, 0);
else if (pass == 2)
{
+#if 0
gipc_close (gip);
gipc_destroy (gip);
unlink (fifo_server_name);
unlink (fifo_client_name);
gip = gipc_initialize (fifo_client_name);
+#endif
+ mknod (fifo_server_name, S_IFIFO|0666, 0);
start_kernel (argc, argv, id);
r = gipc_open (gip, fifo_server_name, 1);
}