diff --git a/Documentation/NXGraphicsSubsystem.html b/Documentation/NXGraphicsSubsystem.html index 7d9c2d64e9..7aa8ab03cd 100644 --- a/Documentation/NXGraphicsSubsystem.html +++ b/Documentation/NXGraphicsSubsystem.html @@ -356,14 +356,14 @@
1NXMU and NXSU are interchangeable other than (1) certain start-up - and initializeation APIs (as described below), and (2) timing. With NXSU, NX APIs + and initialization APIs (as described below), and (2) timing. With NXSU, NX APIs execute immediately; with NXMU, NX APIs defer and serialize the operations and, hence, introduce different timing and potential race conditions that you would not experience with NXSU.
NXNULL? - At one time, I also envisoned a NULL front-end that did not support windowing + At one time, I also envisioned a NULL front-end that did not support windowing at all but, rather, simply provided the entire framebuffer or LCD memory as one dumb window. This has the advantage that the same NX APIs can be used on the one dumb window as for the other NX windows. @@ -765,7 +765,7 @@ int nxgl_splitline(FAR struct nxgl_vector_s *vector, FAR struct nxgl_trapezoid_s
Description: In the general case, a line with width can be represented as a parallelogram with a triangle at the top and bottom. - Triangles and parallelograms are both degenerate versions of a trapeziod. + Triangles and parallelograms are both degenerate versions of a trapezoid. This function breaks a wide line into triangles and trapezoids. This function also detects other degenerate cases:
@@ -777,7 +777,7 @@ int nxgl_splitline(FAR struct nxgl_vector_s *vector, FAR struct nxgl_trapezoid_s Ifx1 == x2 then the line is vertical and also better represented as a rectangle.
mq_notifiy():
nx_eventnotify() again.
CONFIG_NX_MULTIUSER as well.
CONFIG__NXCONSOLE_KBDBUFSIZE:
CONFIG_NXCONSOLE_NXKBDIN is enabled, then this value may be used to
- define the size of the per-window keyboar input buffer. Default: 16
+ define the size of the per-window keyboard input buffer. Default: 16
CONFIG_NXCONSOLE_NPOLLWAITERS:
Use the bdf-converter program to convert the BDF font to the NuttX font format.
- This will result in a C header file containing defintions.
+ This will result in a C header file containing definitions.
That header file should be installed at, for example, graphics/nxfonts/nxfonts_myfont.h.
Note the inefficiency when execv() or execl() is called in the normal, two-step process:
(1) first call vfork() to create a new thread, then (2) call execv() or execl() to replace the new thread with a program from the file system.
- Since the new thread will be terminated by the execv() or execl() call, it really served no purpose other than to support Unix compatility.
+ Since the new thread will be terminated by the execv() or execl() call, it really served no purpose other than to support Unix compatibility.
The non-standard binfmt function exec() needs to have (1) a symbol table that provides the list of symbols exported by the base code, and (2) the number of symbols in that table.
@@ -1000,7 +1000,7 @@ int posix_spawn_file_actions_destroy(FAR posix_spawn_file_actions_t *file_action
Description:
- The posix_spawn_file_actions_destroy() function destroys the object referenced by file_actions which was previously initializeed by posix_spawn_file_actions_init(), returning any resources obtained at the time of initialization to the system for subsequent reuse.
+ The posix_spawn_file_actions_destroy() function destroys the object referenced by file_actions which was previously initialized by posix_spawn_file_actions_init(), returning any resources obtained at the time of initialization to the system for subsequent reuse.
A posix_spawn_file_actions_t may be reinitialized after having been destroyed, but must not be reused after destruction, unless it has been reinitialized.
@@ -1931,8 +1931,8 @@ interface of the same name.
Description:
- sched_rr_get_interval() writes the timeslice interval
- for task identified by pid into the timespec structure
+ sched_rr_get_interval() writes the timeslice interval
+ for task identified by pid into the timespec structure
pointed to by interval. If pid is zero, the timeslice
for the calling process is written into 'interval. The
identified process should be running under the SCHED_RR