I'm instantiating QSystemDeviceInfo on a worker thread, but it causes a segfault.

int BatteryInfo::getLevel() {
   QSystemDeviceInfo sysDevInfo; //segfault happens when I step on to this line
   return sysDevInfo.batteryLevel();
}

Is the class thread-safe, or does the problem lie elsewhere?

EDIT: With further debugging I also noticed that native Symbian calls segfault as well.

Best regards

link|improve this question

Have you a panic code from the native calls? – James Jul 29 '11 at 0:51
There is no panic. – ExplodingRat Jul 29 '11 at 6:38
feedback

2 Answers

up vote 3 down vote accepted

Me and my friend found this issue as well on Symbian Qt Mobilty 1.0. He reported an issue QtMobility access from multiple threads. As it says in the issue description Think this could be due to that some static members are created first time the QSystemDeviceInfo/QSystemNetworkInfo is created..

If you are using Qt Mobility 1.2 or only accessing QSystemDeviceInfo from one thread it's some other issue.

EDIT: One workaround for us was to make sure we created a QSystemDeviceInfo object in our main thread first but then we had some problems with not getting all signals.

link|improve this answer
I'm using mobility 1.1, so this seems to be the problem. – ExplodingRat Jul 30 '11 at 4:31
feedback

Do you have capabilities set ? QSystemDeviceInfo needs the 'ReadDeviceData' capability.You will need to sign your app to install on the device if you include this capability.

link|improve this answer
I have the capability set. Those calls work just fine without the thread. I have also signed the app. – ExplodingRat Jul 29 '11 at 6:09
1  
I had a similar issue with QtContacts. Try initializing QSystemDeviceInfo on a heap in the main thread and then try using it in the worker thread. – Abhijith Jul 29 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.