diff options
Diffstat (limited to 'src/bin/msgq/msgq_messages.mes')
-rw-r--r-- | src/bin/msgq/msgq_messages.mes | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/src/bin/msgq/msgq_messages.mes b/src/bin/msgq/msgq_messages.mes index 09c9030ccb..3f6e6bc40c 100644 --- a/src/bin/msgq/msgq_messages.mes +++ b/src/bin/msgq/msgq_messages.mes @@ -19,6 +19,10 @@ # <topsrcdir>/tools/reorder_message_file.py to make sure the # messages are in the correct order. +% MSGQ_ALREADY_RUNNING Another copy of b10-msgq is already running. +Only a single instance of b10-msgq should ever be run at one time. +This instance will now terminate. + % MSGQ_CFGMGR_SUBSCRIBED The config manager subscribed to message queue This is a debug message. The message queue has little bit of special handling for the configuration manager. This special handling is happening now. @@ -85,17 +89,6 @@ Debug message. The listener is trying to open a listening socket. Debug message. The message queue successfully opened a listening socket and waits for incoming connections. -% MSGQ_POLL_ERROR Error while polling for events: %1 -A low-level error happened when waiting for events, the error is logged. The -reason for this varies, but it usually means the system is short on some -resources. - -% MSGQ_POLL_UNKNOWN_EVENT Got an unknown event from the poller for fd %1: %2 -An unknown event got out from the poll() system call. This should generally not -happen and it is either a programmer error or OS bug. The event is ignored. The -number noted as the event is the raw encoded value, which might be useful to -the authors when figuring the problem out. - % MSGQ_RECV_ERROR Error reading from socket %1: %2 There was a low-level error when reading from a socket. The error is logged and the corresponding socket is dropped. The errors include receiving @@ -119,6 +112,11 @@ on shutdown unless there's really something unexpected. % MSGQ_RECV_HDR Received header: %1 Debug message. This message includes the whole routing header of a packet. +% MSGQ_SELECT_ERROR Error while waiting for events: %1 +A low-level error happened when waiting for events, the error is logged. The +reason for this varies, but it usually means the system is short on some +resources. + % MSGQ_SEND_ERROR Error while sending to socket %1: %2 There was a low-level error when sending data to a socket. The error is logged and the corresponding socket is dropped. @@ -148,3 +146,9 @@ data structure. % MSGQ_SUBS_NEW_TARGET Creating new target for subscription to group '%1' for instance '%2' Debug message. Creating a new subscription. Also creating a new data structure to hold it. + +% MSGQ_SOCKET_TIMEOUT_ERROR Killing socket %1 because timeout exceeded (%2) +Outgoing data was queued up on a socket connected to msgq, but the other +side is not reading it. It could be deadlocked, or may not be monitoring +it. Both cases are programming errors and should be corrected. The socket +is closed on the msgq side. |