]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-parisc/signal.h
container freezer: add TIF_FREEZE flag to all architectures
[linux-2.6-omap-h63xx.git] / include / asm-parisc / signal.h
index 25cb23ef7dd120dab907d0cfe802c82e583e7ce5..c20356375d1d5630f07d98ed27212b6e5d08a257 100644 (file)
@@ -48,7 +48,6 @@
  * SA_FLAGS values:
  *
  * SA_ONSTACK indicates that a registered stack_t will be used.
- * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
  * SA_RESTART flag to get restarting signals (which were the default long ago)
  * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
  * SA_RESETHAND clears the handler when the signal is delivered.
@@ -69,7 +68,6 @@
 
 #define SA_NOMASK      SA_NODEFER
 #define SA_ONESHOT     SA_RESETHAND
-#define SA_INTERRUPT   0x20000000 /* dummy -- ignored */
 
 #define SA_RESTORER    0x04000000 /* obsolete -- ignored */
 
 struct siginfo;
 
 /* Type of a signal handler.  */
-#ifdef __LP64__
+#ifdef CONFIG_64BIT
 /* function pointers on 64-bit parisc are pointers to little structs and the
  * compiler doesn't support code which changes or tests the address of
  * the function in the little struct.  This is really ugly -PB