diff options
| author | Alejandro Colomar <alx@kernel.org> | 2022-12-03 18:47:33 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2022-12-03 20:32:39 +0100 |
| commit | f65432f1d78d735e7d7880ffac56e1b7291f3225 (patch) | |
| tree | 2e08b296c12a2b233fab438084d1e90b88492034 | |
| parent | be5ad807f876c4ec1983c49049c365dc947700c2 (diff) | |
| download | man-pages-f65432f1d78d735e7d7880ffac56e1b7291f3225.tar.gz | |
clone.2: SYNOPSIS: Add _Nullable
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man2/clone.2 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/man2/clone.2 b/man2/clone.2 index 0936308595..a3e6188fd8 100644 --- a/man2/clone.2 +++ b/man2/clone.2 @@ -50,10 +50,12 @@ Standard C library .B #define _GNU_SOURCE .B #include <sched.h> .PP -.BI "int clone(int (*" "fn" ")(void *), void *" stack \ -", int " flags ", void *" "arg" ", ..." -.BI " /* pid_t *" parent_tid ", void *" tls \ -", pid_t *" child_tid " */ );" +.BI "int clone(int (*" "fn" ")(void *_Nullable), void *" stack \ +", int " flags , +.BI " void *_Nullable " "arg" ", ..." \ +" \fR/*\fP" " pid_t *_Nullable " parent_tid , +.BI " void *_Nullable " tls , +.BI " pid_t *_Nullable " child_tid " \fR*/\fP );" .PP /* For the prototype of the raw clone() system call, see NOTES */ .PP |
