Skip to content
Snippets Groups Projects
Commit 44fe7131 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Default NxWidgets and NxWM priorities should be 100 not 50 to be consistent...

Default NxWidgets and NxWM priorities should be 100 not 50 to be consistent with other default priorities
parent 425772f3
No related branches found
No related tags found
No related merge requests found
...@@ -40,10 +40,10 @@ config NXWIDGETS_VPLANE ...@@ -40,10 +40,10 @@ config NXWIDGETS_VPLANE
config NXWIDGETS_SERVERPRIO config NXWIDGETS_SERVERPRIO
int "NX Server priority" int "NX Server priority"
default 51 default 110
---help--- ---help---
Priority of the NX server. This applies only if NX is configured in Priority of the NX server. This applies only if NX is configured in
multi-user mode (NX_MULTIUSER=y). Default: 51. multi-user mode (NX_MULTIUSER=y). Default: 110.
NOTE: Of the three priority definitions here, NXWIDGETS_SERVERPRIO NOTE: Of the three priority definitions here, NXWIDGETS_SERVERPRIO
should have the highest priority to avoid data overrun race conditions. should have the highest priority to avoid data overrun race conditions.
...@@ -58,18 +58,18 @@ config NXWIDGETS_SERVERSTACK ...@@ -58,18 +58,18 @@ config NXWIDGETS_SERVERSTACK
config NXWIDGETS_CLIENTPRIO config NXWIDGETS_CLIENTPRIO
int "NX Client Priority" int "NX Client Priority"
default 50 default 100
---help--- ---help---
The thread that calls CNxServer::connect() will be re-prioritized to The thread that calls CNxServer::connect() will be re-prioritized to
this priority. This applies only if NX is configured in multi-user this priority. This applies only if NX is configured in multi-user
mode (NX_MULTIUSER=y). Default: 50 mode (NX_MULTIUSER=y). Default: 100
config NXWIDGETS_LISTENERPRIO config NXWIDGETS_LISTENERPRIO
int "NX Listener Priority" int "NX Listener Priority"
default 50 default 100
---help--- ---help---
Priority of the NX event listener thread. This applies only if NX Priority of the NX event listener thread. This applies only if NX
is configured in multi-user mode (NX_MULTIUSER=y). Default: 50 is configured in multi-user mode (NX_MULTIUSER=y). Default: 100
config NXWIDGETS_LISTENERSTACK config NXWIDGETS_LISTENERSTACK
int "NX Listener Stack Size" int "NX Listener Stack Size"
...@@ -544,9 +544,9 @@ config NXWM_STARTWINDOW_MXMPRIO ...@@ -544,9 +544,9 @@ config NXWM_STARTWINDOW_MXMPRIO
config NXWM_STARTWINDOW_PRIO config NXWM_STARTWINDOW_PRIO
int "StartWindow Task Priority" int "StartWindow Task Priority"
default 50 default 100
---help--- ---help---
Priority of the StartWindow task. Default: 50. Priority of the StartWindow task. Default: 100.
NOTE: This priority should be less than NXWIDGETS_SERVERPRIO or else NOTE: This priority should be less than NXWIDGETS_SERVERPRIO or else
there may be data overrun errors. Such errors would most likely appear there may be data overrun errors. Such errors would most likely appear
...@@ -563,9 +563,9 @@ comment "NxConsole Window Configuration" ...@@ -563,9 +563,9 @@ comment "NxConsole Window Configuration"
config NXWM_NXCONSOLE_PRIO config NXWM_NXCONSOLE_PRIO
int "NxConsole Task Priority" int "NxConsole Task Priority"
default 50 default 100
---help--- ---help---
Priority of the NxConsole task. Default: 50. Priority of the NxConsole task. Default: 100.
NOTE: This priority should be less than NXWIDGETS_SERVERPRIO or NOTE: This priority should be less than NXWIDGETS_SERVERPRIO or
else there may be data overrun errors. Such errors would most likely else there may be data overrun errors. Such errors would most likely
...@@ -662,9 +662,9 @@ config NXWM_TOUCHSCREEN_SIGNO ...@@ -662,9 +662,9 @@ config NXWM_TOUCHSCREEN_SIGNO
config NXWM_TOUCHSCREEN_LISTENERPRIO config NXWM_TOUCHSCREEN_LISTENERPRIO
int "Touchscreen Listener Task Priority" int "Touchscreen Listener Task Priority"
default 50 default 100
---help--- ---help---
Priority of the touchscreen listener thread. Default: 50 Priority of the touchscreen listener thread. Default: 100
config NXWM_TOUCHSCREEN_LISTENERSTACK config NXWM_TOUCHSCREEN_LISTENERSTACK
int "Touchscreen Listener Task Stack Size" int "Touchscreen Listener Task Stack Size"
...@@ -704,9 +704,9 @@ config NXWM_KEYBOARD_BUFSIZE ...@@ -704,9 +704,9 @@ config NXWM_KEYBOARD_BUFSIZE
config NXWM_KEYBOARD_LISTENERPRIO config NXWM_KEYBOARD_LISTENERPRIO
int "Keyboard Listener Task Priority" int "Keyboard Listener Task Priority"
default 50 default 100
---help--- ---help---
Priority of the touchscreen listener thread. Default: 50 Priority of the touchscreen listener thread. Default: 100
config NXWM_KEYBOARD_LISTENERSTACK config NXWM_KEYBOARD_LISTENERSTACK
int "Keyboard Listener Task Stack Size" int "Keyboard Listener Task Stack Size"
...@@ -779,9 +779,9 @@ config NXWM_CALIBRATION_SIGNO ...@@ -779,9 +779,9 @@ config NXWM_CALIBRATION_SIGNO
config NXWM_CALIBRATION_LISTENERPRIO config NXWM_CALIBRATION_LISTENERPRIO
int "Calibration Task Priority" int "Calibration Task Priority"
default 50 default 100
---help--- ---help---
Priority of the calibration listener thread. Default: 50 Priority of the calibration listener thread. Default: 100
config NXWM_CALIBRATION_LISTENERSTACK config NXWM_CALIBRATION_LISTENERSTACK
int "Calibration Task Stack Size" int "Calibration Task Stack Size"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment