From 16ad6dff26a09e15551eef80d6fc949a3e754dbc Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 8 Jan 2017 09:14:39 -0600 Subject: [PATCH] NX server: Correct message queue names. Should not be at /dev, but rather relative to /var/mqueue. --- Kconfig | 4 ++-- nxwm/include/nxwmconfig.hxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Kconfig b/Kconfig index 8fbb24fe8..68ba99a5d 100644 --- a/Kconfig +++ b/Kconfig @@ -628,10 +628,10 @@ endif # NXWM_CUSTOM_STARTWINDOW_ICON config NXWM_STARTWINDOW_MQNAME string "Message Queue Name" - default "/dev/nxwm" + default "nxwm" ---help--- 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 int "Max Messages" diff --git a/nxwm/include/nxwmconfig.hxx b/nxwm/include/nxwmconfig.hxx index aa9a727bc..c039f5663 100644 --- a/nxwm/include/nxwmconfig.hxx +++ b/nxwm/include/nxwmconfig.hxx @@ -301,7 +301,7 @@ * 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 * 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 * before blocking. Default 32 * CONFIG_NXWM_STARTWINDOW_MXMPRIO - The message priority. Default: 42. @@ -335,7 +335,7 @@ */ #ifndef CONFIG_NXWM_STARTWINDOW_MQNAME -# define CONFIG_NXWM_STARTWINDOW_MQNAME "/dev/nxwm" +# define CONFIG_NXWM_STARTWINDOW_MQNAME "nxwm" #endif #ifndef CONFIG_NXWM_STARTWINDOW_MXMSGS