diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index b1664f3f09..0b67eddb74 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: January 4, 2013
+Last Updated: January 12, 2013
@@ -4480,6 +4480,11 @@ build task name to save in the TCB. Useful if scheduler instrumentation is selected. Set to zero to disable. +CONFIG_SCHED_HAVE_PARENT
: Remember the ID of the parent thread when a new child thread is created.
+ This support enables a few minor features (such as SIGCHLD
) and slightly increases the size of the Task Control Block (TCB) of every task to hold the ID of the parent thread.
+ Default: disabled.
+ CONFIG_SYSTEM_TIME16
:
The range of system time is, by default, 32-bits.
@@ -4582,7 +4587,7 @@ build
CONFIG_SIG_SIGWORK
: The signal number that will be used to wake-up
- the worker thread. Default: 4
+ the worker thread. Default: 17
CONFIG_SCHED_LPWORK
: If CONFIG_SCHED_WORKQUEUE is defined, then a single work queue is created by default.
@@ -4624,9 +4629,41 @@ build
user_start
.
+ Signal Numbers: +
+CONFIG_SIG_SIGUSR1
:
+ Value of standard user signal 1 (SIGUSR1
). Default: 1
+ CONFIG_SIG_SIGUSR2
:
+ Value of standard user signal 2 (SIGUSR2
). Default: 2
+ CONFIG_SIG_SIGALARM
:
+ Default the standard signal used with POSIX timers (SIGALRM
). Default: 3
+ CONFIG_SIG_SIGCHLD
:
+ The SIGCHLD
signal is sent to the parent of a child process when it exits, is interrupted (stopped), or resumes after being interrupted.
+ Default: 4
+ CONFIG_SIG_SIGCONDTIMEDOUT
:
+ This non-standard signal number is used in the implementation of pthread_cond_timedwait()
.
+ Default 16.
+ CONFIG_SIG_SIGWORK
:
+ SIGWORK
is a non-standard signal used to wake up the internal NuttX worker thread.
+ Default: 17.
+ - Binary Loaders: + Binary Loaders:
- System Logging: + System Logging:
- Kernel build options: + Kernel build options:
- OS setup related to on-demand paging: + OS setup related to on-demand paging:
+ Disabling OS Features. The following can be used to disable categories of APIs supported by the OS. If the compiler supports weak functions, then it should not be necessary to disable functions unless you want to