search for: getcurrenttimefromdisplay

Displaying 2 results from an estimated 2 matches for "getcurrenttimefromdisplay".

2006 Dec 10
1
[BUG] Compiz hangs at launch when the focus windows is a swing window
...from /lib/tls/i686/cmov/libc.so.6 #5 0xb7c21b69 in XProcessInternalConnection () from /usr/lib/libX11.so.6 #6 0xb7c21f4f in _XRead () from /usr/lib/libX11.so.6 #7 0xb7c232f1 in _XReadEvents () from /usr/lib/libX11.so.6 #8 0xb7c1c05d in XWindowEvent () from /usr/lib/libX11.so.6 #9 0x08051185 in getCurrentTimeFromDisplay () #10 0x0805fd7e in moveInputFocusToWindow () #11 0x080569a5 in addDisplay () #12 0x0804f770 in main () I also ran a strace on compiz to see what was happening and it is in an infinite loop on a poll syscall. This is repeting over and over : poll([{fd=4, events=POLLIN, revents=POLLIN}], 1, -1) =...
2007 Apr 19
0
[PATCH] Make focusDefaultWindow () take a CompScreen as argument
...piz.h b/include/compiz.h index 4c72dd3..f882b84 100644 --- a/include/compiz.h +++ b/include/compiz.h @@ -26,7 +26,7 @@ #ifndef _COMPIZ_H #define _COMPIZ_H -#define ABIVERSION 20070417 +#define ABIVERSION 20070418 #include <stdio.h> #include <sys/time.h> @@ -985,7 +985,7 @@ Time getCurrentTimeFromDisplay (CompDisplay *d); void -focusDefaultWindow (CompDisplay *d); +focusDefaultWindow (CompScreen *s); void forEachWindowOnDisplay (CompDisplay *display, diff --git a/plugins/rotate.c b/plugins/rotate.c index bf6bb95..640c8f4 100644 --- a/plugins/rotate.c +++ b/plugins/rotate.c @@ -521,7 +521,7...