Index: trunk/Ohana/src/opihi/pcontrol/init.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/init.c	(revision 3203)
+++ trunk/Ohana/src/opihi/pcontrol/init.c	(revision 4450)
@@ -1,12 +1,22 @@
 # include "opihi.h"
 
-int job	            PROTO((int, char **));
-int host            PROTO((int, char **));
-int status          PROTO((int, char **));
+int kill_pc     PROTO((int, char **));
+int delete      PROTO((int, char **));
+int job	        PROTO((int, char **));
+int host        PROTO((int, char **));
+int check       PROTO((int, char **));
+int status      PROTO((int, char **));
+int stdout_pc   PROTO((int, char **));
+int stderr_pc   PROTO((int, char **));
 
 static Command cmds[] = {  
-  {"job",       job,      "add job"},
-  {"host",      host,     "add / delete / modify host"},
-  {"status",    status,   "get system status"},
+  {"kill",      kill_pc,   "kill job"},
+  {"delete",    delete,    "delete job"},
+  {"job",       job,       "add job"},
+  {"host",      host,      "add / delete / modify host"},
+  {"check",     check,     "get job or host status"},
+  {"status",    status,    "get system status"},
+  {"stdout",    stdout_pc, "get stdout buffer for job"},
+  {"stderr",    stderr_pc, "get stderr buffer for job"},
 }; 
 
