diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index ce18662b6da..01abeba222b 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -149,7 +149,7 @@ 4.5.16 up_addrenv_kstackfree() 4.6 boardctl() Application Interface
- 4.7 Symmetric Multiprocssing (SMP) Application Interface + 4.7 Symmetric Multiprocessing (SMP) Application Interface

Description:

Input Parameters:

Assumptions:

4.3.4.4.4 up_alarm_start()
@@ -2448,7 +2448,7 @@ int up_alarm_cancel(FAR struct timespec *ts); int up_alarm_start(FAR const struct timespec *ts);

Description:

- Start the alarm. sched_timer_expiration() will be called when the alarm occurs (unless up_alaram_cancel is called to stop it). + Start the alarm. sched_timer_expiration() will be called when the alarm occurs (unless up_alarm_cancel is called to stop it).

Input Parameters:

@@ -2484,7 +2484,7 @@ int up_timer_cancel(FAR struct timespec *ts);

Assumptions:

4.3.4.4.6 up_timer_start()
@@ -2712,7 +2712,7 @@ VxWorks provides the following comparable interface:

     #include <nuttx/wdog.h>
-    Sint wd_gettime(WDOG_ID wdog);
+    int wd_gettime(WDOG_ID wdog);
 

Description: @@ -2787,7 +2787,7 @@ typedef uint32_t wdparm_t;

-

4.7 Symmetric Multiprocssing (SMP) Application Interface

+

4.7 Symmetric Multiprocessing (SMP) Application Interface

According to Wikipedia: "Symmetric multiprocessing (SMP) involves a symmetric multiprocessor system hardware and software architecture where two or more identical processors connect to a single, shared main memory, have full access to all I/O devices, and are controlled by a single operating system instance that treats all processors equally, reserving none for special purposes. Most multiprocessor systems today use an SMP architecture. In the case of multi-core processors, the SMP architecture applies to the cores, treating them as separate processors.

@@ -3780,7 +3780,7 @@ int up_cpu_start(int cpu);

Description:

-

4.8.5 sched_alaram_expiration()

+

4.8.5 sched_alarm_expiration()

Function Prototype:

The above are all standard interfaces as defined at OpenGroup.org. Those interfaces are available for use by application software. The remaining interfaces discussed in this section are non-standard, OS-internal interfaces. @@ -6124,7 +6124,7 @@ int setlogmask(int mask);

6.4.1.4 Debug Interfaces

- In NuttX, syslog output is really synonymous to debug output and, herefore, the debugging interface macros defined in the header file + In NuttX, syslog output is really synonymous to debug output and, therefore, the debugging interface macros defined in the header file include/debug.h are also syslogging interfaces. Those macros are simply wrappers around syslog(). The debugging interfaces differ from the syslog interfaces in that: