Index: trunk/Ohana/src/opihi/pantasks/psched.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/psched.c	(revision 6687)
+++ 	(revision )
@@ -1,55 +1,0 @@
-# include "psched.h"
-
-# define opihi_name "psched"
-# define opihi_prompt "psched: "
-# define opihi_description "parallel task scheduler\n"
-# define opihi_history ".psched"
-# define opihi_rcfile ".pschedrc"
-
-/* program-dependent initialization */
-void program_init (int *argc, char **argv) {
-  
-  auto_break = TRUE;
-
-  /* load the commands used by this implementation */
-  InitBasic ();
-  InitData ();
-  InitPsched ();
-
-  rl_readline_name = opihi_name;
-  rl_attempted_completion_function = command_completer;
-  rl_event_hook = NULL;
-  rl_set_keyboard_input_timeout (100000); 
-
-  set_str_variable ("HISTORY", opihi_history);
-  set_str_variable ("PROMPT", opihi_prompt);
-  set_str_variable ("RCFILE", opihi_rcfile);
-
-# ifdef HELPDIR_DEFAULT
-  set_str_variable ("HELPDIR", MACRO_NAME(HELPDIR_DEFAULT));
-# endif
-
-  signal (SIGPIPE, gotsignal);
-  signal (SIGTSTP, gotsignal);
-  signal (SIGTTIN, gotsignal);
-  return;
-}
-
-/* standard welcome message */
-void welcome () {
-  fprintf (stderr, "\n");
-  fprintf (stderr, "Welcome to %s - %s\n\n", opihi_name, opihi_description);
-}
-
-/* add program-dependent exit functions here */
-void cleanup () {
-  QuitImage ();
-  QuitGraph ();
-  QuitController ();
-  return;
-}
-
-void gotsignal (int signum) {
-  fprintf (stderr, "got signal : %d\n", signum);
-  return;
-}
