nuttx/fs/procfs
Xiang Xiao 23668a4b9b build: Remove the empty variable assignment
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2020-05-24 08:24:13 -06:00
..
fs_procfs.c Run nxstyle against all .c and .h files modified by this PR. 2020-05-09 14:19:08 -03:00
fs_procfscpuload.c tools/nxstyle.c: Fix a rare false alarm that could occur if a variable or function name begins with the sub-string 'union' or 'struct'. misc fixes under fs/ and sched/ from application of current version of nxstyle. 2019-12-01 13:01:16 -06:00
fs_procfscritmon.c
fs_procfsiobinfo.c Make the read ahead buffer unselectable 2020-01-11 08:24:49 -06:00
fs_procfsmeminfo.c nxstyle fixes 2020-04-11 21:19:47 +01:00
fs_procfsproc.c Run nxstyle against all .c and .h files modified by this PR. 2020-05-09 14:19:08 -03:00
fs_procfsuptime.c Rename clock_systime[r|spec] to clock_systime_[ticks|timespec] 2020-05-10 14:35:50 -06:00
fs_procfsutil.c
fs_procfsversion.c Remove exra whitespace from files (#189) 2020-01-31 09:24:49 -06:00
fs_skeleton.c Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
Kconfig fs/: Remove support for CONFIG_FS_READABLE 2020-03-22 08:24:07 -05:00
Make.defs build: Remove the empty variable assignment 2020-05-24 08:24:13 -06:00
README.txt Remove 'executable' bit on several files 2019-08-01 14:13:55 -06:00

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