diff options
author | Adam Jackson <ajax@redhat.com> | 2008-10-10 16:33:24 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-10-10 16:33:57 -0400 |
commit | b736f477f5324f79af30fc0f941ba0714a34ccda (patch) | |
tree | a470fe197e71376f0a2303ef2923031deab6f710 /mi | |
parent | 94ed0ba1b5043ad9fc33b42756af447d5ab15bbd (diff) |
mieq: Backtrace when the queue overflows.
Since we're probably stuck down in a driver somewhere, let's at least
try to point out where. This will need to be rethought when the input
thread work lands though.
Diffstat (limited to 'mi')
-rw-r--r-- | mi/mieq.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -169,6 +169,7 @@ mieqEnqueue(DeviceIntPtr pDev, xEvent *e) oldtail = (oldtail - 1) % QUEUE_SIZE; } else { + static int stuck = 0; newtail = (oldtail + 1) % QUEUE_SIZE; /* Toss events which come in late. Usually this means your server's * stuck in an infinite loop somewhere, but SIGIO is still getting @@ -176,8 +177,13 @@ mieqEnqueue(DeviceIntPtr pDev, xEvent *e) if (newtail == miEventQueue.head) { ErrorF("[mi] EQ overflowing. The server is probably stuck " "in an infinite loop.\n"); + if (!stuck) { + xorg_backtrace(); + stuck = 1; + } return; } + stuck = 0; miEventQueue.tail = newtail; } |