Gregory Nutt e880bc9a71 Remove unused, non-modular procfs reference 4 年之前
..
Kconfig 2b532ae4a8 fs/: Remove support for CONFIG_FS_READABLE 4 年之前
Make.defs 338244dbac procfs: Get version info from uname instead 4 年之前
README.txt 6d7e0feea1 Remove 'executable' bit on several files 5 年之前
fs_procfs.c e880bc9a71 Remove unused, non-modular procfs reference 4 年之前
fs_procfscpuload.c 9dff16e0e4 fix nxstyle warning 4 年之前
fs_procfscritmon.c 9dff16e0e4 fix nxstyle warning 4 年之前
fs_procfsiobinfo.c 346336bb9e Make the read ahead buffer unselectable 4 年之前
fs_procfsmeminfo.c 72104c182c nxstyle fixes 4 年之前
fs_procfsproc.c 0e610caec8 fs/procfs: Handle /proc/xxx/group/ correctly 4 年之前
fs_procfsuptime.c 9dff16e0e4 fix nxstyle warning 4 年之前
fs_procfsutil.c 335d1e0030 fs/procfs: Fix an error in a common function that manages read data. 6 年之前
fs_procfsversion.c 338244dbac procfs: Get version info from uname instead 4 年之前
fs_skeleton.c 9dff16e0e4 fix nxstyle warning 4 年之前

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
0x527420