nuttx/fs/procfs
Jiuzhu Dong f93c17be94 fs/procfs: fix readdir loss last character
nsh> ls
/proc:
 0/
 1/
 2/
 3/
 4/
 5/
 meminf
 iobinf
 f/
 ne/
 sel/
 uptim
 versio

Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com>
2022-01-05 21:58:38 +08:00
..
fs_procfs.c fs/procfs: fix readdir loss last character 2022-01-05 21:58:38 +08:00
fs_procfscpuload.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_procfscritmon.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_procfsiobinfo.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_procfsmeminfo.c fs/profs: Add ordblks in meminfo_progmem 2021-07-12 16:49:56 -03:00
fs_procfsproc.c nuttx:Change fs strncpy to strlcpy to avoid losing'\0' 2021-12-30 18:06:00 +08:00
fs_procfstcbinfo.c sched: Move g_tcbinfo to include/nuttx/sched.h 2021-11-22 14:59:48 -03:00
fs_procfsuptime.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_procfsutil.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_procfsversion.c fs/procfs: fix heap overflow when snprintf meet long string 2021-07-02 08:25:02 -05:00
fs_skeleton.c nuttx:Change fs strncpy to strlcpy to avoid losing'\0' 2021-12-30 18:06:00 +08:00
Kconfig fs:procfs: add tcbinfo procfs interface 2021-11-10 14:31:10 -03:00
Make.defs fs:procfs: add tcbinfo procfs interface 2021-11-10 14:31:10 -03:00
README.txt

fs/procfs README
================

  This is a tiny procfs file system that allows read-only access to a few
  attributes of a task or thread.  This tiny procfs fs file system can be
  built into the system by enabling:

    CONFIG_FS_PROCFS=y

  It can then be mounted from the NSH command like like:

    nsh> mount -t procfs /proc

Example
=======

  NuttShell (NSH) NuttX-6.31
  nsh> mount -t procfs /proc

  nsh> ls /proc
  /proc:
   0/
   1/

  nsh> ls /proc/1
  /proc/1:
   status
   cmdline

  nsh> cat /proc/1/status
  Name:       init
  Type:       Task
  State:      Running
  Priority:   100
  Scheduler:  SCHED_FIFO
  SigMask:    00000000

  nsh> cat /proc/1/cmdline
  init

  nsh> sleep 100 &
  sleep [2:100]
  nsh> ls /proc
  ls /proc
  /proc:
   0/
   1/
   2/

  nsh> cat /proc/2/cmdline
  <pthread> 0x527420