nuttx/fs/procfs
2016-02-14 08:43:47 -06:00
..
fs_procfs.c nuttx/fs: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:43:47 -06:00
fs_procfscpuload.c nuttx/fs: Fix some spacing and alignment issues 2015-10-11 11:39:29 -06:00
fs_procfskmm.c Add procfs/kmm to show the state of the kernel heap 2016-02-06 11:35:30 -06:00
fs_procfsproc.c nuttx/fs: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:43:47 -06:00
fs_procfsuptime.c Fix a typo from the last big set of changes 2016-01-21 12:26:53 -06:00
fs_procfsutil.c Create procfs_utils.c; File missed from last commit; + remove warning from mm_memalign.c (how did this work before?) 2013-12-14 08:53:23 -06:00
fs_skeleton.c net/: Add procfs support for network device status 2015-11-27 16:39:14 -06:00
Kconfig Add procfs/kmm to show the state of the kernel heap 2016-02-06 11:35:30 -06:00
Make.defs Add procfs/kmm to show the state of the kernel heap 2016-02-06 11:35:30 -06:00
README.txt fs/binfs/README.txt: Add a README file 2013-11-13 16:40:03 -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