projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92ed301
)
signal: fix typo in dequeue_synchronous_signal()
author
Pavel Machek
<pavel@ucw.cz>
Fri, 24 Jul 2020 09:05:31 +0000
(11:05 +0200)
committer
Christian Brauner
<christian.brauner@ubuntu.com>
Sun, 26 Jul 2020 21:57:52 +0000
(23:57 +0200)
s/postive/positive/
Signed-off-by: Pavel Machek (CIP) <pavel@denx.de>
Link:
https://lore.kernel.org/r/20200724090531.GA14409@amd
[christian.brauner@ubuntu.com: tweak commit message]
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
kernel/signal.c
patch
|
blob
|
history
diff --git
a/kernel/signal.c
b/kernel/signal.c
index ee22ec78fd6d5c136429f5a2f67ca19d40307ba1..6f16f7c5d3755542aacf4c8bd31962b794199294 100644
(file)
--- a/
kernel/signal.c
+++ b/
kernel/signal.c
@@
-719,7
+719,7
@@
static int dequeue_synchronous_signal(kernel_siginfo_t *info)
* Return the first synchronous signal in the queue.
*/
list_for_each_entry(q, &pending->list, list) {
- /* Synchronous signals have a postive si_code */
+ /* Synchronous signals have a pos
i
tive si_code */
if ((q->info.si_code > SI_USER) &&
(sigmask(q->info.si_signo) & SYNCHRONOUS_MASK)) {
sync = q;