diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -80,13 +80,25 @@ without blocking the GUI thread, as GTK seems to not like that. They've deprecated most of the threading stuff, and only left this `g_main_context_invoke` mess, which doesn't even seem to work all of the time. -So, every now and again, the program will just die completely with the message: +So, every now and again, the program will just die completely with one of the +following messages: ``` +Xlib: sequence lost (0x100c1 > 0xc3) in reply type 0x1c! +[xcb] Unknown request in queue while dequeuing +[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called +[xcb] Aborting, sorry about that. + [xcb] Unknown sequence number while processing queue [xcb] Most likely this is a multi-threaded client and XInitThreads has not been called [xcb] Aborting, sorry about that. mktrayicon: xcb_io.c:274: poll_for_event: Assertion `!xcb_xlib_threads_sequence_lost' failed. + +Xlib: sequence lost (0x100c1 > 0xc3) in reply type 0x1c! +[xcb] Unknown request in queue while dequeuing +[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called +[xcb] Aborting, sorry about that. +mktrayicon: xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed. ``` If someone has a genious way to fix this, patches are welcome. |