interest is written with one 'r' (shame on me)
authorClaus Gittinger <cg@exept.de>
Fri, 15 Dec 1995 13:49:37 +0100
changeset 760 7eeb5f12e7fe
parent 759 908363ce8a32
child 761 f8a8fea4391f
interest is written with one 'r' (shame on me)
Character.st
Unix.st
--- a/Character.st	Fri Dec 15 13:47:55 1995 +0100
+++ b/Character.st	Fri Dec 15 13:49:37 1995 +0100
@@ -697,7 +697,7 @@
 
 isLetter
     "return true, if I am a letter 
-     - use isNationalLetter, if you are interrested in those."
+     - use isNationalLetter, if you are interested in those."
 
 %{  /*NOCONTEXT */
 
@@ -711,7 +711,7 @@
 
 isLetterOrDigit
     "return true, if I am a letter or a digit
-     - use isNationalAlphaNumeric, if you are interrested in those."
+     - use isNationalAlphaNumeric, if you are interested in those."
 
 %{  /* NOCONTEXT */
 
@@ -820,5 +820,5 @@
 !Character class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.28 1995-12-07 21:32:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.29 1995-12-15 12:49:15 cg Exp $'
 ! !
--- a/Unix.st	Fri Dec 15 13:47:55 1995 +0100
+++ b/Unix.st	Fri Dec 15 13:49:37 1995 +0100
@@ -31,6 +31,7 @@
 #endif
 
 #ifdef LINUX
+#define USE_SIGACTION
 # ifndef WANT_SYSTEM
 #  define WANT_SYSTEM
 # endif
@@ -3164,7 +3165,11 @@
 #ifdef USE_SIGACTION
 	    struct sigaction act;
 
-	    act.sa_flags = SA_RESTART|SA_SIGINFO /* claus: | SA_NOMASK ??? */ ;
+# ifdef SA_SIGINFO
+	    act.sa_flags = SA_RESTART | SA_SIGINFO;
+# else
+	    act.sa_flags = SA_RESTART;
+# endif
 	    sigemptyset(&act.sa_mask);
 	    act.sa_handler = __signalIoInterrupt;
 	    sigaction(THESIGNAL, &act, 0);
@@ -3343,7 +3348,11 @@
 		break;
 	}
 #ifdef USE_SIGACTION
-	act.sa_flags = SA_RESTART|SA_SIGINFO /* claus: | SA_NOMASK ??? */ ;
+# ifdef SA_SIGINFO
+	act.sa_flags = SA_RESTART | SA_SIGINFO;
+# else
+	act.sa_flags = SA_RESTART;
+# endif
 	sigemptyset(&act.sa_mask);
 	act.sa_handler = handler;
 	sigaction(sigNr, &act, 0);
@@ -3381,7 +3390,11 @@
 #ifdef USE_SIGACTION
 	struct sigaction act;
 
-	act.sa_flags = SA_RESTART|SA_SIGINFO /* claus:  | SA_NOMASK ?? */ ;
+# ifdef SA_SIGINFO
+	act.sa_flags = SA_RESTART | SA_SIGINFO;
+# else
+	act.sa_flags = SA_RESTART;
+# endif
 	sigemptyset(&act.sa_mask);
 	act.sa_handler = __signalTimerInterrupt;
 	sigaction(SIGALRM, &act, 0);
@@ -5262,6 +5275,6 @@
 !OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.89 1995-12-15 12:47:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.90 1995-12-15 12:49:37 cg Exp $'
 ! !
 OperatingSystem initialize!