diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-04-04 11:02:11 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-04-12 11:44:56 +0200 |
commit | 41f6e627d7cfdf1ea50d5adbd7e118589dbcf8db (patch) | |
tree | 979f9a42211a4abbad46950b6e069d3f109f68de /src/machine | |
parent | Add fopen_unlocked() wrapper (diff) | |
download | systemd-41f6e627d7cfdf1ea50d5adbd7e118589dbcf8db.tar.xz systemd-41f6e627d7cfdf1ea50d5adbd7e118589dbcf8db.zip |
Make fopen_temporary and fopen_temporary_label unlocked
This is partially a refactoring, but also makes many more places use
unlocked operations implicitly, i.e. all users of fopen_temporary().
AFAICT, the uses are always for short-lived files which are not shared
externally, and are just used within the same context. Locking is not
necessary.
Diffstat (limited to 'src/machine')
-rw-r--r-- | src/machine/machine.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/machine/machine.c b/src/machine/machine.c index 84454ddd86..b916d038d7 100644 --- a/src/machine/machine.c +++ b/src/machine/machine.c @@ -3,7 +3,6 @@ #include <errno.h> #include <string.h> #include <unistd.h> -#include <stdio_ext.h> #include <sys/stat.h> #include "sd-messages.h" @@ -126,7 +125,6 @@ int machine_save(Machine *m) { if (r < 0) goto fail; - (void) __fsetlocking(f, FSETLOCKING_BYCALLER); (void) fchmod(fileno(f), 0644); fprintf(f, |