Преглед на файлове

rename __sa_restorer to sa_restorer in struct sigaction

this is legal since sa_* is in the reserved namespace for signal.h,
per posix. note that the sa_restorer field is not used anywhere, so
programs that are trying to use it may still break, but at least
they'll compile. if it turns out such programs actually need to be
able to set their own sa_restorer to function properly, i'll add the
necessary code to sigaction.c later.
Rich Felker преди 13 години
родител
ревизия
0115a6ed96
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      include/signal.h

+ 1 - 1
include/signal.h

@@ -80,7 +80,7 @@ struct sigaction {
 	} __sa_handler;
 	sigset_t sa_mask;
 	int sa_flags;
-	void (*__sa_restorer)(void);	
+	void (*sa_restorer)(void);	
 };
 #define sa_handler   __sa_handler.sa_handler
 #define sa_sigaction __sa_handler.sa_sigaction