mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-10 23:14:11 +02:00
Update to latest gnulib with new copyright year. Run "make update-copyright" and then... * gnulib: Update included in this commit as copyright years are the only change from the previous gnulib commit. * tests/init.sh: Sync with gnulib to pick up copyright year. * bootstrap: Likewise. * tests/sample-test: Adjust to use the single most recent year.
53 lines
1.9 KiB
C
53 lines
1.9 KiB
C
/* statx -> stat conversion functions for coreutils
|
|
Copyright (C) 2019-2025 Free Software Foundation, Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef COREUTILS_STATX_H
|
|
# define COREUTILS_STATX_H
|
|
|
|
# if HAVE_STATX && defined STATX_INO
|
|
/* Much of the format printing requires a struct stat or timespec */
|
|
static inline struct timespec
|
|
statx_timestamp_to_timespec (struct statx_timestamp tsx)
|
|
{
|
|
struct timespec ts;
|
|
|
|
ts.tv_sec = tsx.tv_sec;
|
|
ts.tv_nsec = tsx.tv_nsec;
|
|
return ts;
|
|
}
|
|
|
|
static inline void
|
|
statx_to_stat (struct statx *stx, struct stat *stat)
|
|
{
|
|
stat->st_dev = makedev (stx->stx_dev_major, stx->stx_dev_minor);
|
|
stat->st_ino = stx->stx_ino;
|
|
stat->st_mode = stx->stx_mode;
|
|
stat->st_nlink = stx->stx_nlink;
|
|
stat->st_uid = stx->stx_uid;
|
|
stat->st_gid = stx->stx_gid;
|
|
stat->st_rdev = makedev (stx->stx_rdev_major, stx->stx_rdev_minor);
|
|
stat->st_size = stx->stx_size;
|
|
stat->st_blksize = stx->stx_blksize;
|
|
/* define to avoid sc_prohibit_stat_st_blocks. */
|
|
# define SC_ST_BLOCKS st_blocks
|
|
stat->SC_ST_BLOCKS = stx->stx_blocks;
|
|
stat->st_atim = statx_timestamp_to_timespec (stx->stx_atime);
|
|
stat->st_mtim = statx_timestamp_to_timespec (stx->stx_mtime);
|
|
stat->st_ctim = statx_timestamp_to_timespec (stx->stx_ctime);
|
|
}
|
|
# endif /* HAVE_STATX && defined STATX_INO */
|
|
#endif /* COREUTILS_STATX_H */
|