Index: trunk/Ohana/src/opihi/pcontrol/init.c
===================================================================
--- trunk/Ohana/src/opihi/pcontrol/init.c	(revision 4689)
+++ trunk/Ohana/src/opihi/pcontrol/init.c	(revision 4706)
@@ -1,23 +1,25 @@
 # include "pcontrol.h"
 
+int check       PROTO((int, char **));
+int delete      PROTO((int, char **));
+int host        PROTO((int, char **));
+int job	        PROTO((int, char **));
+int jobstack    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 stderr_pc   PROTO((int, char **));
+int stdout_pc   PROTO((int, char **));
 int verbose     PROTO((int, char **));
-int stdout_pc   PROTO((int, char **));
-int stderr_pc   PROTO((int, char **));
 
 static Command cmds[] = {  
+  {"check",     check,     "get job or host status"},
+  {"delete",    delete,    "delete job"},
+  {"host",      host,      "add / delete / modify host"},
+  {"job",       job,       "add job"},
+  {"jobstack",  jobstack,  "list jobs for a single stack"},
   {"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"},
+  {"stderr",    stderr_pc, "get stderr buffer for job"},
   {"stdout",    stdout_pc, "get stdout buffer for job"},
-  {"stderr",    stderr_pc, "get stderr buffer for job"},
   {"verbose",   verbose,   "set the verbose mode for job"},
 }; 
