NX server: Correct message queue names. Should not be at /dev, but rather relative to /var/mqueue.

This commit is contained in:
Gregory Nutt 2017-01-08 09:14:39 -06:00
parent b8f53f6d04
commit 16ad6dff26
2 changed files with 4 additions and 4 deletions

View File

@ -628,10 +628,10 @@ endif # NXWM_CUSTOM_STARTWINDOW_ICON
config NXWM_STARTWINDOW_MQNAME config NXWM_STARTWINDOW_MQNAME
string "Message Queue Name" string "Message Queue Name"
default "/dev/nxwm" default "nxwm"
---help--- ---help---
The well known name of the message queue. Used to communicated from The well known name of the message queue. Used to communicated from
CWindowMessenger to the start window thread. Default: "/dev/nxwm" CWindowMessenger to the start window thread. Default: "nxwm"
config NXWM_STARTWINDOW_MXMSGS config NXWM_STARTWINDOW_MXMSGS
int "Max Messages" int "Max Messages"

View File

@ -301,7 +301,7 @@
* CONFIG_NXWM_STARTWINDOW_ICON - The glyph to use as the start window icon * CONFIG_NXWM_STARTWINDOW_ICON - The glyph to use as the start window icon
* CONFIG_NXWM_STARTWINDOW_MQNAME - The well known name of the message queue * CONFIG_NXWM_STARTWINDOW_MQNAME - The well known name of the message queue
* Used to communicated from CWindowMessenger to the start window thread. * Used to communicated from CWindowMessenger to the start window thread.
* Default: "/dev/nxwm" * Default: "nxwm"
* CONFIG_NXWM_STARTWINDOW_MXMSGS - The maximum number of messages to queue * CONFIG_NXWM_STARTWINDOW_MXMSGS - The maximum number of messages to queue
* before blocking. Default 32 * before blocking. Default 32
* CONFIG_NXWM_STARTWINDOW_MXMPRIO - The message priority. Default: 42. * CONFIG_NXWM_STARTWINDOW_MXMPRIO - The message priority. Default: 42.
@ -335,7 +335,7 @@
*/ */
#ifndef CONFIG_NXWM_STARTWINDOW_MQNAME #ifndef CONFIG_NXWM_STARTWINDOW_MQNAME
# define CONFIG_NXWM_STARTWINDOW_MQNAME "/dev/nxwm" # define CONFIG_NXWM_STARTWINDOW_MQNAME "nxwm"
#endif #endif
#ifndef CONFIG_NXWM_STARTWINDOW_MXMSGS #ifndef CONFIG_NXWM_STARTWINDOW_MXMSGS