Your message with subj: error in artswrapper-sourcecode making realtime impossible Thank you for your bug report. You're of course right. I have applied your patch to both KDE3.0 branch a= nd=20 KDE2.2 branch. The bug report will be closed. has caused the attached bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Stephan Kulow (administrator, KDE bugs database) Received: (at submit) by bugs.kde.org; 21 Dec 2001 01:41:07 +0000 Received: (qmail 6750 invoked by uid 33); 21 Dec 2001 01:41:07 -0000 Date: 21 Dec 2001 01:41:07 -0000 Message-ID: <20011221014107.6749.qmail@master.kde.org> To: submit@bugs.kde.org Subject: error in artswrapper-sourcecode making realtime impossible From: lurch@gmx.li Package: arts Version: any (using KDE 2.9.1 CVS/CVSup/Snapshot) Severity: normal Installed from: Compiled sources Compiler: Not Specified OS: Not Specified OS/Compiler notes: Not Specified Found a bug. Here is a patch for artswrapper.c: ----------------- --- artswrapper.c.old Fri Dec 21 02:23:41 2001 +++ artswrapper.c Fri Dec 21 02:24:39 2001 @@ -52,7 +52,7 @@ int prio; prio = getpriority(PRIO_PROCESS,getpid()); - if(prio < -10) + if(prio > -10) { setpriority(PRIO_PROCESS,getpid(),-17); prio = getpriority(PRIO_PROCESS,getpid()); ------------------- I think priority has to be adjusted if it is to low (which means not negative enough ...). Hope this helps :-) (Submitted via bugs.kde.org)