Tagged Questions
1
vote
3answers
167 views
Suspend main thread in qt
I want to make a function that stops the main thread and restarts restarts it after a couple of seconds. I tried the following:
void Mainwindow::timeout()
{
QTimer timer;
...
2
votes
1answer
125 views
Cannot suspend embedded linux while qt app is running
currently I am working on a Qt application running on an Embedded platform (i.MX53).
My problem is, that while this app is running, I cannot make my system suspend.
I am using "busybox rtcwake" to ...
0
votes
1answer
570 views
Qt Application Suspending
How do I detect if my application has been suspended (when someone changes applications) and react by deactivating my timer and then re-activating it when my application becomes un-suspended (when ...