diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-06-24 19:50:32 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-06-24 19:50:32 +0200 |
commit | b4359e8bf97799f83dc1ca62744db7cfcc81bc87 (patch) | |
tree | 3346872613490cc467c19e1645d0026c1221bce7 /redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch | |
parent | 4cc71d79c5718d59078d06c497a56d7c05b41576 (diff) | |
download | tde-packaging-b4359e8bf97799f83dc1ca62744db7cfcc81bc87.tar.gz tde-packaging-b4359e8bf97799f83dc1ca62744db7cfcc81bc87.zip |
RPM Packaging: rename directories
Diffstat (limited to 'redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch')
-rw-r--r-- | redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch b/redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch new file mode 100644 index 000000000..868c8c3cb --- /dev/null +++ b/redhat/tdebase/kdebase-3.5.13-fix_race_condition.patch @@ -0,0 +1,22 @@ +commit 9e172fa7a1e93cc77e09616eb793b823d29ebaec +Author: Darrell Anderson <humanreadable@yahoo.com> +Date: 1333594438 -0500 + + Temporary fix for a probable race condition on some systems. + Still needs to be resolved by determining the root cause. + Partially resolves bug report 760. + +diff --git a/kioslave/system/kdedmodule/systemdirnotify.cpp b/kioslave/system/kdedmodule/systemdirnotify.cpp +index 162d966..99b9ac7 100644 +--- a/kioslave/system/kdedmodule/systemdirnotify.cpp ++++ b/kioslave/system/kdedmodule/systemdirnotify.cpp +@@ -36,6 +36,9 @@ SystemDirNotify::SystemDirNotify() + void SystemDirNotify::init() + { + if( mInited ) ++ // FIXME Work around a race condition by inserting kdDebug delay before following ++ // code is executed -- the root cause of the race should be investigated and fixed. ++ kdDebug() << "SystemDirNotify::init(" << mInited << ")" << endl; + return; + mInited = true; + KGlobal::dirs()->addResourceType("system_entries", |