You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gu...@apache.org on 2021/07/29 09:34:40 UTC

[incubator-nuttx] branch master updated (68a345e -> 545a933)

This is an automated email from the ASF dual-hosted git repository.

gustavonihei pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 68a345e  nucleo-g431rb: add CORDIC example
     add 307cc61  fs: Add fchstat and chstat callback into mountpt_operations
     add 545a933  fs: Don't define UTIME_OMIT if __cplusplus is defined

No new revisions were added by this update.

Summary of changes:
 fs/binfs/fs_binfs.c             |   4 +-
 fs/cromfs/fs_cromfs.c           |   4 +-
 fs/fat/fs_fat32.c               |   4 +-
 fs/hostfs/hostfs.c              |   4 +-
 fs/inode/inode.h                |  27 ++-
 fs/littlefs/lfs_vfs.c           |   4 +-
 fs/nfs/nfs_vfsops.c             |   4 +-
 fs/nxffs/nxffs_initialize.c     |   4 +-
 fs/procfs/fs_procfs.c           |   4 +-
 fs/romfs/fs_romfs.c             |   4 +-
 fs/smartfs/smartfs_smart.c      |   4 +-
 fs/spiffs/src/spiffs_vfs.c      |   2 +
 fs/tmpfs/fs_tmpfs.c             |   2 +
 fs/unionfs/fs_unionfs.c         |   4 +-
 fs/userfs/fs_userfs.c           |   4 +-
 fs/vfs/Make.defs                |   9 +-
 fs/vfs/fs_chstat.c              | 480 ++++++++++++++++++++++++++++++++++++++++
 fs/vfs/fs_fchstat.c             | 287 ++++++++++++++++++++++++
 include/nuttx/fs/fs.h           |  43 +++-
 include/sys/stat.h              |   8 +
 include/sys/syscall_lookup.h    |   9 +
 include/sys/time.h              |   1 +
 include/unistd.h                |   3 +
 libs/libc/unistd/Make.defs      |   4 +-
 libs/libc/unistd/lib_futimens.c |  57 -----
 libs/libc/unistd/lib_utimes.c   |  38 ----
 syscall/syscall.csv             |   9 +
 27 files changed, 909 insertions(+), 118 deletions(-)
 create mode 100644 fs/vfs/fs_chstat.c
 create mode 100644 fs/vfs/fs_fchstat.c
 delete mode 100644 libs/libc/unistd/lib_futimens.c
 delete mode 100644 libs/libc/unistd/lib_utimes.c