anchao opened a new pull request, #2892:
URL: https://github.com/apache/nuttx-apps/pull/2892
## Summary
nshlib: add support for disable sigmask from ps command
before:
```
nsh> ps
PID GROUP PRI POLICY TYPE NPX STATE EVENT SIGMASK
STACK COMMAND
0 0 0 FIFO Kthread - Ready 0000000000000000
0069616 Idle_Task
1 0 224 FIFO Kthread - Waiting Signal 0000000000000000
0067536 loop_task
2 0 224 FIFO Kthread - Waiting Semaphore 0000000000000000
0067504 hpwork 0x400fcfe0 0x400fd028
3 3 100 FIFO Task - Running 0000000000000000
0067536 nsh_main
```
after:
```
nsh> ps
PID GROUP PRI POLICY TYPE NPX STATE EVENT STACK COMMAND
0 0 0 FIFO Kthread - Ready 0069616 Idle_Task
1 0 224 FIFO Kthread - Waiting Signal 0067536 loop_task
2 0 224 FIFO Kthread - Waiting Semaphore 0067504 hpwork
0x400fcfe0 0x400fd028
3 3 100 FIFO Task - Running 0067536 nsh_main
```
Signed-off-by: chao an <[email protected]>
## Impact
N/A
## Testing
sim/nsh
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]