Commit ada9c933 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

signal.c: fix kernel-doc notation

Fix kernel-doc warnings in signal.c:

  Warning(kernel/signal.c:2374): No description found for parameter 'nset'
  Warning(kernel/signal.c:2374): Excess function parameter 'set' description in 'sys_rt_sigprocmask'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 60b8b1de
...@@ -2365,7 +2365,7 @@ int sigprocmask(int how, sigset_t *set, sigset_t *oldset) ...@@ -2365,7 +2365,7 @@ int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
/** /**
* sys_rt_sigprocmask - change the list of currently blocked signals * sys_rt_sigprocmask - change the list of currently blocked signals
* @how: whether to add, remove, or set signals * @how: whether to add, remove, or set signals
* @set: stores pending signals * @nset: stores pending signals
* @oset: previous value of signal mask if non-null * @oset: previous value of signal mask if non-null
* @sigsetsize: size of sigset_t type * @sigsetsize: size of sigset_t type
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment