This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from c126ee8468 sched/assert.c: Fix style check error
new f2844a2e3c vfs: return OK when fsync dir
new a551be4ee2 malloc: set errno to ENOMEM when malloc fail
new 9a60d7bb49 signal: add SIGWINCH define
new fde8affe71 singal: add stack_t define
new b2a9c6a3e5 sched: inherit parent priority by default
new c33e6528b1 getrlimit: add RLIMIT_MEMLOCK define
new ed705f9cb3 sysconf: add _SC_THREAD_THREADS_MAX response
new 700cc5ab90 single: add SS_ONSTACK and SS_DISABLE define
new 3721af647a Add _POSIX_THREAD_PRIORITY_SCHEDULING define
new 30367fd4cd sched: inherit parent priority by default, except idle
new 4ecff53e2c sigaltstack: Add initial implementation of sigaltstack
new f40eee50d6 pwd: Add initial implementation of getpwent
The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
arch/arm/include/cxd56xx/crashdump.h | 4 +-
fs/vfs/fs_dir.c | 7 +-
include/pwd.h | 6 +
include/signal.h | 21 +++
include/sys/resource.h | 1 +
include/unistd.h | 1 +
libs/libc/pwd/Make.defs | 4 +-
libs/libc/pwd/lib_find_pwdfile.c | 69 ++++++++-
libs/libc/pwd/lib_getpwent.c | 165 +++++++++++++++++++++
libs/libc/pwd/lib_pwd.h | 3 +
libs/libc/pwd/lib_pwd_globals.c | 1 +
libs/libc/signal/Make.defs | 3 +-
.../lib_getrlimit.c => signal/sig_altstack.c} | 54 +++----
libs/libc/unistd/lib_sysconf.c | 5 +
mm/umm_heap/umm_malloc.c | 12 +-
mm/umm_heap/umm_memalign.c | 12 +-
mm/umm_heap/umm_realloc.c | 12 +-
mm/umm_heap/umm_zalloc.c | 12 +-
sched/pthread/pthread_create.c | 16 +-
19 files changed, 357 insertions(+), 51 deletions(-)
create mode 100644 libs/libc/pwd/lib_getpwent.c
copy libs/libc/{unistd/lib_getrlimit.c => signal/sig_altstack.c} (70%)