Closed GoogleCodeExporter closed 9 years ago
This error is reported right before cellwriter cleans up:
cellwriter: Fatal IO error 11 (Resource temporarily unavailable) on X server
:0.0.
so it may be hardware reeated?
Original comment by sunshinekisses@gmail.com
on 27 Dec 2009 at 7:04
I also came up with this:
cellwriter: ../../src/xcb_io.c:249: process_responses: Assertion `(((long)
(dpy->last_request_read) - (long) (dpy->request)) <= 0)' failed.
which is from the last line of the function: process_responses(...); right
above that
assertion is:
if(xcb_connection_has_error(c))
_XIOError(dpy);
which is most likely where the other message is called from, c being a pointer
to a
xcb_connection_t.
Original comment by sunshinekisses@gmail.com
on 27 Dec 2009 at 10:10
As far as I can tell this patch remedies this particular issue. I've installed
this
updated version on my pc and will report back if I notice it breaking
something. Of
course one could modify the key_event_send_enter() which, in hindsight, I
perhaps
should have done as is it maybe less prone to break something.
Speaking of which, I`d like to know if anyone else can reproduce it on their own
hardware since it might be specific to my own.
Original comment by sunshinekisses@gmail.com
on 27 Dec 2009 at 11:49
Just adding a call to XSync() between key events appears to to solve the issue
in a
much more elegant fashion.
Original comment by sunshinekisses@gmail.com
on 30 Dec 2009 at 8:18
Attachments:
This issue was closed by revision r21.
Original comment by risu...@gmail.com
on 7 Jan 2010 at 12:05
I can't reproduce the bug so it must be specific to your particular hardware
setup.
Adding that XSync event doesn't do any harm though so I committed the change.
Thanks
for reporting it! Please check to make sure the unmodified SVN version works
for you.
Original comment by risu...@gmail.com
on 7 Jan 2010 at 12:07
It works great! Thanx alot!
Original comment by sunshinekisses@gmail.com
on 7 Jan 2010 at 2:37
Original issue reported on code.google.com by
sunshinekisses@gmail.com
on 23 Dec 2009 at 10:32