signal: Remove the siginfo paramater from kernel_dqueue_signal

None of the callers use the it so remove it.

Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
Eric W. Biederman
2018-07-19 21:31:13 -05:00
rodzic b16503baa8
commit 961366a019
3 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@@ -2311,7 +2311,7 @@ static void handle_exception(struct fsg_common *common)
* into a high-priority EXIT exception.
*/
for (;;) {
int sig = kernel_dequeue_signal(NULL);
int sig = kernel_dequeue_signal();
if (!sig)
break;
if (sig != SIGUSR1) {