Displaying 20 results from an estimated 2000 matches similar to: "[Bug 106155] New: Screen freeze with mouse able to move"
2018 Dec 30
1
[Bug 109186] New: Nouveau is freeze display. Only mouse working
https://bugs.freedesktop.org/show_bug.cgi?id=109186
Bug ID: 109186
Summary: Nouveau is freeze display. Only mouse working
Product: Mesa
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: blocker
Priority: medium
Component: Drivers/DRI/nouveau
2018 Dec 30
3
[Bug 109185] New: Nouveau is freeze display. Only mouse working
https://bugs.freedesktop.org/show_bug.cgi?id=109185
Bug ID: 109185
Summary: Nouveau is freeze display. Only mouse working
Product: Mesa
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: blocker
Priority: medium
Component: Drivers/DRI/nouveau
2007 Oct 11
3
Autotest and RSpect
I managed to have Autotest running on my windows box. Apparently all is
working but every time I know there is an error a new line is generated,
no error messages or anything is sent to the console.
I am using pastie now (thanks to David), please go to:
http://pastie.caboo.se/106155
Daniel
--
Posted via http://www.ruby-forum.com/.
2018 Apr 07
6
[Bug 105940] New: Display freeze caused by nouveau
https://bugs.freedesktop.org/show_bug.cgi?id=105940
Bug ID: 105940
Summary: Display freeze caused by nouveau
Product: xorg
Version: 7.7 (2012.06)
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee: nouveau
2018 Apr 20
2
Missed strlen optimizations
Hello,
Code: https://godbolt.org/g/EG4Wi6
unsigned fff3(void) {
char buf[10] = "";
return strlen(buf);
}
Since we are memset-ing before strlen call, we could replace strlen with
just 0.
Has LLVM any API to get "last instruction before strlen" which modifies
strlen argument "buf"? So we can check "yes, it is memset there, replace
strlen with zero"
2018 Apr 20
2
Missed strlen optimizations
Use *last = nullptr;
for (Use &U : Src->uses())
last = &U;
last->getUser()->dump();
Or any better solution?
2018-04-20 19:19 GMT+02:00 Dávid Bolvanský <david.bolvansky at gmail.com>:
> Is:
>
>
> 2018-04-20 18:07 GMT+02:00 Dávid Bolvanský <david.bolvansky at gmail.com>:
>
>> Hello,
>>
>> Code: https://godbolt.org/g/EG4Wi6
2018 Apr 20
0
Missed strlen optimizations
Is:
2018-04-20 18:07 GMT+02:00 Dávid Bolvanský <david.bolvansky at gmail.com>:
> Hello,
>
> Code: https://godbolt.org/g/EG4Wi6
>
> unsigned fff3(void) {
> char buf[10] = "";
> return strlen(buf);
> }
>
> Since we are memset-ing before strlen call, we could replace strlen with
> just 0.
>
> Has LLVM any API to get "last
2018 Apr 20
0
Missed strlen optimizations
Maybe nicer..
auto i = Src->uses().begin();
std::advance(i, Src->getNumUses() - 1);
i->getUser()->dump();
2018-04-20 19:19 GMT+02:00 Dávid Bolvanský <david.bolvansky at gmail.com>:
> Use *last = nullptr;
> for (Use &U : Src->uses())
> last = &U;
> last->getUser()->dump();
>
>
> Or any better solution?
>
> 2018-04-20 19:19
2011 Jun 18
1
Mouse freezes when clicking
In games, mouse pointer freezes while clicking. For example, in counter-strike, I can shoot and move at the same time, but not shoot and aim. This started happening a few wine releases back. Any ideas? I tried searching for this but nothing came up.
2016 Mar 16
0
display freezes when mouse pointer hits left edge
Hi!
I have a very strange problem with a recently purchased ViewSonic 4k
display connected via display port to a Thinkpad 410 with nvidia gt218m
(nvs 3100m).
Every time the mouse pointer touches the left edge of the screen, the
display becomes a block of solid color and freezes. Suspend/resume of the
laptop reanimates the display. I suspected a bug in the handling of the
hardware cursor, so
2011 Mar 06
2
[Bug 35056] New: nouveau freezes with TRAP_TEXTURE error in logs - Mouse keeps moving
https://bugs.freedesktop.org/show_bug.cgi?id=35056
Summary: nouveau freezes with TRAP_TEXTURE error in logs -
Mouse keeps moving
Product: xorg
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component: Driver/nouveau
2011 Oct 13
3
[Bug 41750] New: Driver sometimes freezes X - mouse still works. Symptom: Event Queue overflow
https://bugs.freedesktop.org/show_bug.cgi?id=41750
Summary: Driver sometimes freezes X - mouse still works.
Symptom: Event Queue overflow
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component:
2018 Apr 20
2
LLVM Pass Managers
+ Vedant: what do you think about the last point, since Debugify is also
related?
Son Tuan Vu
On Thu, Apr 19, 2018 at 6:14 PM, Philip Pfaffe <philip.pfaffe at gmail.com>
wrote:
> Hi Son,
>
> PassManagerBuilder is used to populate legacy PassManagers. That role is
> taken over by PassBuilder for new-PM passes.
>
> Cheers,
> Philip
>
> 2018-04-18 13:40 GMT+02:00
2018 Apr 20
5
Sieve "redirect" changes envelope sender in 2.3. / pigeonhole 0.5
Hi (Stephan?),
is it a new feature of dovecot 2.3 /pigeonhole 0.5 that a sieve "redirect" changes the envelope sender of
a redirected mail or simply a bug ?
A sends mail to B, B redirects to C
C sees B (not A!) as envelope sender.
It is not a problem if C gets the mail but if that mail bounces
for various reasons it goes back to B and A will never know about this.
I thick this is came
2003 Jan 09
1
Wine / Visual Foxpro 7 Problems (mouse click freezes the program)
Hi,
First of all, apologies if I'm not posting this in the correct place.
I'm successfully running Microsoft Visual Foxpro 7 under Wine, however I
needed to use the native versions of shlwapi and oleaut32.
There is a major problem still, however, and that is that foxpro will freeze
as soon as I use the mouse to click in certain controls (the command
window, a textbox, an edit box,
2018 Apr 20
0
LLVM Pass Managers
Hi,
+ Chandler, who has a lot more experience with our pass managers.
> On Apr 20, 2018, at 12:56 PM, Son Tuan VU <sontuan.vu119 at gmail.com> wrote:
>
> + Vedant: what do you think about the last point, since Debugify is also related?
Could you clarify the question? I'm not sure what it is you'd like me to chime in about.
> 2, I've asked this question once but
2015 Nov 15
21
[Bug 92961] New: Xorg freezes (only mouse and ssh are still working)
https://bugs.freedesktop.org/show_bug.cgi?id=92961
Bug ID: 92961
Summary: Xorg freezes (only mouse and ssh are still working)
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: critical
Priority: high
Component: Driver/nouveau
2018 Apr 06
9
[Bug 105935] New: DRI3 suddenly stopped turning on at some point in the past 5 months
https://bugs.freedesktop.org/show_bug.cgi?id=105935
Bug ID: 105935
Summary: DRI3 suddenly stopped turning on at some point in the
past 5 months
Product: Mesa
Version: 17.3
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: major
Priority: medium
2011 Jul 06
1
mouse is not synced with the game mouse
I have installed the game Nancy Drew : The Captive curse using wineskin. It installed fine. only that when i run the game, the mouse doesn't seem to be synced with the mac mouse. Please help....
2003 Aug 05
1
A USB mouse, a scroll wheel, moused and moused_flags
In previous cases where I set up X to use a wheel mouse I told it to use
moused and then had XFree do the wheel translation with the ZAxisMapping
option. After looking at the FAQ again I decided to try doing the
translation with moused on my new 5.1-R desktop box. So I did a ps ax |
grep moused and got what I expected...
/usr/sbin/moused -p /dev/ums0 -I /var/run/moused.ums0.pid
so as root I