]> git.ipfire.org Git - thirdparty/systemd.git/commit - CODING_STYLE
tree-wide: never use the off_t unless glibc makes us use it
authorLennart Poettering <lennart@poettering.net>
Thu, 10 Sep 2015 16:16:18 +0000 (18:16 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 10 Sep 2015 16:16:18 +0000 (18:16 +0200)
commit59f448cf15f94bc5ebfd5b254de6f2441d02fbec
tree1d52fd0935cca0205c78fde6870abddb7aafd360
parentf33be3119806f96898dda6ade492fbdcdf8f79b8
tree-wide: never use the off_t unless glibc makes us use it

off_t is a really weird type as it is usually 64bit these days (at least
in sane programs), but could theoretically be 32bit. We don't support
off_t as 32bit builds though, but still constantly deal with safely
converting from off_t to other types and back for no point.

Hence, never use the type anymore. Always use uint64_t instead. This has
various benefits, including that we can expose these values directly as
D-Bus properties, and also that the values parse the same in all cases.
31 files changed:
CODING_STYLE
src/basic/copy.c
src/basic/copy.h
src/basic/util.c
src/basic/util.h
src/cgtop/cgtop.c
src/core/load-fragment.c
src/import/pull-raw.c
src/journal/compress.c
src/journal/compress.h
src/journal/coredump-vacuum.c
src/journal/coredump-vacuum.h
src/journal/coredump.c
src/journal/journal-file.c
src/journal/journalctl.c
src/journal/journald-gperf.gperf
src/journal/test-compress.c
src/journal/test-coredump-vacuum.c
src/libsystemd/sd-bus/busctl.c
src/login/logind-user.c
src/machine/machine-dbus.c
src/machine/machinectl.c
src/nspawn/nspawn.c
src/shared/bus-util.c
src/shared/conf-parser.c
src/shared/conf-parser.h
src/shared/pager.c
src/systemctl/systemctl.c
src/sysusers/sysusers.c
src/test/test-copy.c
src/test/test-util.c