a7265d71c6
Squashed commit of the following: Add procfs support to show stopped tasks. Add nxsig_action() to solve a chicken and egg problem: We needed to use sigaction to set default actions, but sigaction() would refuse to set actions if the default actions could not be caught or ignored. sched/signal: Add configuration option to selectively enabled/disable default signal actions for SIGSTOP/SIGSTP/SIGCONT and SIGKILL/SIGINT. Fix some compilation issues. sched/sched: Okay.. I figured out a way to handle state changes that may occur while they were stopped. If a task/thread was already blocked when SIGSTOP/SIGSTP was received, it will restart in the running state. I will appear that to the task/thread that the blocked condition was interrupt by a signal and returns the EINTR error. sched/group and sched/sched: Finish framework for continue/resume logic. sched/signal: Roughing out basic structure to support task suspend/resume |
||
---|---|---|
.. | ||
Kconfig | ||
Make.defs | ||
README.txt | ||
fs_procfs.c | ||
fs_procfscpuload.c | ||
fs_procfsmeminfo.c | ||
fs_procfsproc.c | ||
fs_procfsuptime.c | ||
fs_procfsutil.c | ||
fs_skeleton.c |
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