Penguin

Differences between version 6 and predecessor to the previous major change of Signal.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 6 Last edited on Tuesday, April 17, 2007 7:54:52 pm by BenStaz Revert
Older page: version 4 Last edited on Thursday, May 4, 2006 9:38:28 am by IanMcDonald Revert
@@ -32,8 +32,28 @@
 # [SIGWINCH] 
 # [SIGIO] 
 # [SIGPWR] 
 # [SIGSYS] 
+  
+!Hotkeys for some of the above symbols.  
+  
+These hotkeys can be found by typing:  
+  
+*stty -a  
+  
+intr = ^C; quit = ^\; kill = ^U; susp = ^Z  
+<verbatim>  
+intr = [SIGINT]  
+quit = [SIGQUIT]  
+kill = [SIGKILL]  
+susp = [SIGSTOP]  
+</verbatim>  
+  
+Some people have a misconception that CTRL-S and CTRL-Q send a [SIGSTOP] and [SIGCONT] signal respectively.  
+  
+This is not the case!  
+  
+CTRL-S and CTRL-Q are used to control the flow of output to the terminal. CTRL-S tells the system not to send any more data to the screen until a CTRL-Q is pressed. You can use these to control fast scrolling output.  
  
 Here are a couple of pages that show how to code for signals:<br> 
 http://users.actcom.co.il/~choo/lupg/tutorials/signals/signals-programming.html<br> 
 http://www.gnu.org/software/libc/manual/html_node/Signal-Handling.html