Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 9:39 p.m.) Status -- This change has been ma

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 8:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread David Faure
> On Nov. 16, 2014, 7:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Thomas Lübking
> On Nov. 16, 2014, 7:22 nachm., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway.

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 10:14 p.m.) Review request for KDE Software on Ma

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 9:29 p.m., David Faure wrote: > > kdecore/kernel/kglobal.cpp, line 332 > > > > > > Would s_allowQuit.load() compile? I forgot the Qt4 API since it changed > > in Qt5. > > > > It woul

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread David Faure
> On Nov. 16, 2014, 7:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 8:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread David Faure
> On Nov. 16, 2014, 7:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Thomas Lübking
> On Nov. 16, 2014, 7:22 nachm., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway.

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread David Faure
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70475 --- Ship it! kdecore/kernel/kglobal.cpp

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 8:22 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 8:22 p.m., Thomas Lübking wrote: > > kdecore/kernel/kglobal.cpp, line 343 > > > > > > Does this actually make sense? > > The result is "undefined" when used from multiple threads anyway. >

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Albert Astals Cid
> On nov. 16, 2014, 2:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Thomas Lübking
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70468 --- kdecore/kernel/kglobal.cpp

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 8:05 p.m., Pino Toscano wrote: > > kdecore/kernel/kglobal.cpp, lines 323-324 > > > > > > QAtomicInt is not a POD, so it is not safe to be used this way. You > > rather need to use the semi-pr

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 8:19 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
> On Nov. 16, 2014, 2:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70466 --- kdecore/kernel/kglobal.cpp

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
> On Nov. 16, 2014, 7:05 p.m., Pino Toscano wrote: > > kdecore/kernel/kglobal.cpp, lines 323-324 > > > > > > QAtomicInt is not a POD, so it is not safe to be used this way. You > > rather need to use the semi-pr

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 8:13 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 8:05 p.m., Pino Toscano wrote: > > kdecore/kernel/kglobal.cpp, lines 323-324 > > > > > > QAtomicInt is not a POD, so it is not safe to be used this way. You > > rather need to use the semi-pr

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Pino Toscano
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70463 --- kdecore/kernel/kglobal.cpp

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 8:01 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 7:55 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
> On Nov. 16, 2014, 2:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 5:28 p.m., Thomas Lübking wrote: > > Do you have a backtrace of the condition? > > If there's trouble w/ ONE client onnly, i'd rather bet on a client bug (and > > KGlobal doesn't mention thread-safetyness) > > > > What you probably can do (as it's reproducible "somehow") is

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
> On Nov. 16, 2014, 2:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70448 --- kdecore/kernel/kglobal.cpp

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Thomas Lübking
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70444 --- Do you have a backtrace of the condition? If there's trouble w

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- (Updated Nov. 16, 2014, 4:53 p.m.) Review request for KDE Software on Mac

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
> On Nov. 16, 2014, 3:58 p.m., Milian Wolff wrote: > > as I said before: Did you check whether that is actually the case? Did you > > add some assertions to see what other thread is calling this code? > > > > I'm not sure whether this is supposed to be threadsafe or not. If it must > > be thre

Re: Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread Milian Wolff
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/#review70441 --- as I said before: Did you check whether that is actually the c

Review Request 121134: make KGlobal reference counting threadsafe

2014-11-16 Thread René J . V . Bertin
--- This is an automatically generated e-mail. To reply, visit: https://git.reviewboard.kde.org/r/121134/ --- Review request for KDE Software on Mac OS X and kdelibs. Repository: kdel