mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Logging is causing a spinlock.. Needs further investigation
This commit is contained in:
parent
d2a386143c
commit
e1ed2311f3
@ -32,11 +32,11 @@ QStatusBar *qstatusbar;
|
|||||||
|
|
||||||
void MainWindow::Log(QString s)
|
void MainWindow::Log(QString s)
|
||||||
{
|
{
|
||||||
// if (!loglock.tryLock()) {
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
strlock.lock();
|
if (!strlock.tryLock())
|
||||||
|
return;
|
||||||
|
|
||||||
|
// strlock.lock();
|
||||||
QString tmp=QString("%1: %2").arg(logtime.elapsed(),5,10,QChar('0')).arg(s);
|
QString tmp=QString("%1: %2").arg(logtime.elapsed(),5,10,QChar('0')).arg(s);
|
||||||
|
|
||||||
logbuffer.append(tmp); //QStringList appears not to be threadsafe
|
logbuffer.append(tmp); //QStringList appears not to be threadsafe
|
||||||
|
Loading…
Reference in New Issue
Block a user