incubator-nuttx/fs/procfs
Xiang Xiao a262eebe34 libc: Rename match to fnmatch
specified here:
https://pubs.opengroup.org/onlinepubs/007904875/functions/fnmatch.html

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2021-08-02 08:23:35 -03:00
..
Kconfig sched: Dynamically extend the pid hash table 2021-07-11 19:42:30 -07:00
Make.defs Author: Gregory Nutt: update licenses to Apache 2021-02-05 12:15:56 -03:00
README.txt
fs_procfs.c libc: Rename match to fnmatch 2021-08-02 08:23:35 -03: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 profs: Print StackAlloc by procfs_snprintf 2021-07-12 16:49:56 -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: Ken Pettit: update licenses to Apache 2021-04-10 06:42:19 -05: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