Changeset 4763 for trunk/Ohana/src/opihi/pcontrol/pcontrol.c
- Timestamp:
- Aug 14, 2005, 10:33:53 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/pcontrol/pcontrol.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pcontrol/pcontrol.c
r4762 r4763 19 19 rl_attempted_completion_function = command_completer; 20 20 rl_event_hook = CheckSystem; 21 rl_set_keyboard_input_timeout (1000 00);21 rl_set_keyboard_input_timeout (1000); 22 22 23 23 set_str_variable ("HISTORY", opihi_history); … … 30 30 /* ignore the history file. to change this, see, eg, mana.c */ 31 31 signal (SIGINT, SIG_IGN); 32 signal (SIGPIPE, gotsignal); 33 signal (SIGTSTP, gotsignal); 34 signal (SIGTTIN, gotsignal); 32 35 return; 33 36 } … … 44 47 return; 45 48 } 49 50 void gotsignal (int signum) { 51 fprintf (stderr, "got signal : %d\n", signum); 52 return; 53 }
Note:
See TracChangeset
for help on using the changeset viewer.
