CCL def command, i.e. user definitions - saved as resource files.
[egate.git] / kernel / eti.c
index 5dc1a7d..7b028d0 100644 (file)
@@ -2,7 +2,14 @@
  * Europagate, 1995
  *
  * $Log: eti.c,v $
- * Revision 1.10  1995/05/01 12:43:29  adam
+ * Revision 1.12  1995/05/03 07:37:35  adam
+ * CCL commands stop/continue implemented. New functions gw_res_{int,bool}
+ * are used when possible.
+ *
+ * Revision 1.11  1995/05/01  16:26:56  adam
+ * More work on resource monitor.
+ *
+ * Revision 1.10  1995/05/01  12:43:29  adam
  * First work on resource monitor program.
  *
  * Revision 1.9  1995/04/21  16:37:43  adam
@@ -196,8 +203,8 @@ int main (int argc, char **argv)
        exit (1);
     }
 #if USE_MONITOR
-    sprintf (fifo_server_name, "fifo.s");
-    sprintf (fifo_client_name, "fifo.c");
+    sprintf (fifo_server_name, "fifo.s.m");
+    sprintf (fifo_client_name, "fifo.c.m");
 #else
     sprintf (fifo_server_name, "fifo.s.%d", id);
     sprintf (fifo_client_name, "fifo.c.%d", id);
@@ -225,6 +232,7 @@ int main (int argc, char **argv)
         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);