Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux

Pull thread fix from Christian Brauner:
"A simple spelling fix for dequeue_synchronous_signal()"

* tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux:
signal: fix typo in dequeue_synchronous_signal()

+1 -1
+1 -1
kernel/signal.c
··· 719 719 * Return the first synchronous signal in the queue. 720 720 */ 721 721 list_for_each_entry(q, &pending->list, list) { 722 - /* Synchronous signals have a postive si_code */ 722 + /* Synchronous signals have a positive si_code */ 723 723 if ((q->info.si_code > SI_USER) && 724 724 (sigmask(q->info.si_signo) & SYNCHRONOUS_MASK)) { 725 725 sync = q;