nuttx/fs/procfs
2016-01-21 12:26:53 -06:00
..
fs_procfs.c OS modules: Add basic procfs support. A module registry that will eventually be used to support lsmod 2015-12-12 17:42:25 -06:00
fs_procfscpuload.c nuttx/fs: Fix some spacing and alignment issues 2015-10-11 11:39:29 -06:00
fs_procfsproc.c Add group ID or parent PID to procfs output (if available) 2015-11-30 06:58:06 -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 OS modules: Add basic procfs support. A module registry that will eventually be used to support lsmod 2015-12-12 17:42:25 -06:00
Make.defs Completes VFS-based named semaphore implemetation. Still a little buggy 2014-09-28 15:58:56 -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