1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00

docs/CODING_STYLE: fix typo (CLONE_VORK -> VFORK)

This commit is contained in:
Mike Yuan 2024-02-24 13:26:19 +08:00
parent 857945cc5f
commit 3d3c42773d
No known key found for this signature in database
GPG Key ID: 417471C0A40F58B3

View File

@ -774,7 +774,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later
- A corollary of the above is: never use `clone()` where a `fork()` would do
too. Also consider using `posix_spawn()` which combines `clone()` +
`execve()` into one and has nice properties since it avoids becoming a CoW
trap by using `CLONE_VORK` and `CLONE_VM` together.
trap by using `CLONE_VFORK` and `CLONE_VM` together.
- While we avoid forking off threads on our own, writing thread-safe code is a
good idea where it might end up running inside of libsystemd.so or