Index: trunk/Ohana/src/opihi/pantasks/delete.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/delete.c	(revision 4539)
+++ trunk/Ohana/src/opihi/pantasks/delete.c	(revision 4552)
@@ -1,5 +1,5 @@
-# include "pcontrol.h"
+# include "scheduler.h"
 
-int delete (int argc, char **argv) {
+int delete_job (int argc, char **argv) {
 
   Job *job;
@@ -13,28 +13,5 @@
   /* use a string interp to convert JobIDs to ints ? */
 
-  job = PullJob (JobID, PCONTROL_JOB_PENDING);
-  if (job != NULL) goto found;
-
-  job = PullJob (JobID, PCONTROL_JOB_CRASH);
-  if (job != NULL) goto found;
-
-  job = PullJob (JobID, PCONTROL_JOB_EXIT);
-  if (job != NULL) goto found;
-
-  fprintf (stderr, "job %s not PENDING, CRASH, EXIT\n", argv[1]);
-  return (FALSE);
-  
-found:
-  {
-    int j;
-    fprintf (stderr, "deleting job  %s  %d  ", job[0].hostname, job[0].argc);
-    for (j = 0; j < job[0].argc; j++) {
-      fprintf (stderr, "%s ", job[0].argv[j]);
-    }
-    PrintID (stderr, job[0].JobID);
-    fprintf (stderr, "\n");
-  }  
-  DelJob (job);
-
+  fprintf (stderr, "this function is not yet implemented\n");
   return (TRUE);
 }
