Tagged Questions
10
votes
1answer
5k views
what is the correct way to implement a QThread… (example please…)
The qt documentation for QThread, it says to create a class from QThread, and to implement the run method. Below is taken from the 4.7 Qthread documentation...
To create your own threads, subclass ...
8
votes
5answers
8k views
Qt signaling across threads, one is GUI thread?
What does it mean to move a object from one thread to another in Qt using moveToThread? Everything seems to work even before using moveToThread, which moves the object from one thread (GUI thread) to ...
6
votes
2answers
733 views
Qt: Correct way to post events to a QThread?
In my Qt application, I have a main thread and a worker thread. The worker thread subclasses QThread and processes events via customEvent. Is this the correct way for the main thread to send events to ...
6
votes
5answers
3k views
How can I terminate a QThread
Recently ,I come across this problem as I memtioned in this Title.
I have tried by using QThread::terminate(),but I just can NOT stop
the thread ,which is in a dead loop (let's say,while(1)).
thanks ...
4
votes
3answers
529 views
How to implement a QThread that runs forever{} with a QWaitCondition but still needs to catch another Slot while doing that
I implemented a class that can write data to a serial port via a QQueue and read from it by a slot. I use QAsyncSerial for this which in turn uses boost::asio with a callback.
The class is moved to a ...
4
votes
3answers
1k views
QThread blocking main application
I have a simple form UI that has a slot for a button, starting a thread:
void MainWindow::LoadImage()
{
aThread->run();
}
And the run() method looks like this:
void CameraThread::run()
{
...
3
votes
2answers
326 views
Wake up a QThread that is in sleep?
How can I wake up a QThread when it is sleeping?
I have a thread that is running in the background and now and then wakes up and does some small stuff, however if I would like to stop that thread in ...
3
votes
3answers
349 views
Is it possible to implement polling with QThread without subclassing it?
I have a class, which is an abstraction of some device.
class Device
{
public:
...
void Start();
void Stop();
void MsgLoop();
signals:
void sMsgArrived();
}
Start() and ...
3
votes
3answers
237 views
Questions about QThread
If I make a QThread and call one of its slots from another thread, will it be called in the context of the thread of the QThread object, or from the context of the thread which made the call?
3
votes
1answer
449 views
Concurrency issues with QThreads. Threads receiving the same signal are blocking each other
So I'm working on a program that processes video in real-time and I'm having some trouble with threads "blocking" each other.
My system is pretty much set up like this:
DataSourceThread
...
3
votes
3answers
4k views
Do I need to call QThread.exec() in my thread?
I am not calling exec() yet my timer and QUdpSocket work just fine. Is exec used to wait for an event to continue?
UPDATE: the timer was working because I had not called moveToThread(this) on the ...
3
votes
3answers
3k views
Calling a function in child thread in Qt?
I have a main thread that invokes a child thread function at different times but I am not sure whether that is right way of doing it in Qt.What is wrong with the below code and looking for better ...
2
votes
3answers
68 views
How to terminate long running Qt Thread
I have a threaded application in which main thread is the gui thread and the secondary thread is the one doing major computing inside nested for loops. Now the problem is how to terminate the ...
2
votes
1answer
45 views
Unable to match current Date and time in Qt
I am writing a simple task planner and reminder using Qt which will play a sound file when the date and time of any given task matches with the the current date and time.
To implement this, I am ...
2
votes
2answers
58 views
why signal/slot not working with multiple threads?
class A : public QObject{
Q_OBJECT
signals:
void a_sig();
public:
A(){ }
public slots:
void begin(){
QObject::connect(&_timer, SIGNAL(timeout()), this, SIGNAL(a_sig()));
...
2
votes
1answer
98 views
QT: run independent thread from other thread
Let me just give you an example.
class B : public QThread {
public:
void run() {
}
};
class A : public QThread {
public:
void run() {
b1.start(); b2.start();
}
protected:
B b1, b2;
...
2
votes
2answers
111 views
How can I protect a QThread function so it will not be called again until finished its previous work?
I'm using a QThread and inside its run method I have a timer invoking a function that performs some heavy actions that take some time. Usually more than the interval that triggers the timer (but not ...
2
votes
2answers
176 views
Qt - Mysterious segfaults on worker thread
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
...
2
votes
2answers
137 views
Running Threads Simultanously using Qt
I have a problem. I have a Qiwidget which has 2 pushbuttons. On pressing one button i need to play back 1 file using some playback technique. On clicking the other button I want to playback another ...
2
votes
1answer
184 views
Monitor Qt GUI from QThread class
I am trying to run a background thread (qthread) that needs to monitor a checkbox in the gui and it will not run! It builds but during runtime i get this error:
"Unhandled exception at 0x0120f494 in ...
2
votes
3answers
357 views
qt signal/slot and pthreads dont play well together
Can someone tell me why this qt code will not call the Callback when ASYNC_TIMERS is defined (ie m_timer.start is called from the pthread but the slot never runs). Obviously it is to do with being ...
2
votes
4answers
948 views
Knowing when a QThread's event loop has started from another thread
in my program, I am subclassing QThread, and I implemented the virtual method run() like so:
void ManagerThread::run() {
// do a bunch of stuff,
// create some objects that should be handled ...
2
votes
2answers
457 views
Race condition with QThread/QDialog
I'm trying to avoid a race condition in the following scenario:
QDialog* dialog = [...];
QThread* thread = [...];
connect(thread, SIGNAL(finished()), dialog, SLOT(accept()));
thread->start();
...
2
votes
2answers
283 views
Why can't I call a class's start function from within itself?
I'm totally new to programming with threads, and since the class is using QThreads, I'm wondering why I cannot call a QThread's start function from within itself and have its run function start ...
2
votes
1answer
699 views
Can I use waitForReadyRead in a QThread that belongs to the mainthread?
I have a QThread that contains a QUDPsocket (socket is member not local to QThread::run(), maybe I should change that from what I am reading). This QThread is instantiated in my QMainWindow class ie ...
2
votes
1answer
149 views
Emitting signals from other threads
I have a class which has a method that is called by the main thread and 3 other threads (2 QThreads and 1 made with QtConcurrent::run()). Inside this method I sometimes emit a signal. Is this okay ...
1
vote
2answers
39 views
qt thread options
I'm currently writing a programme which has a function to hash a number of files in the background. I've read the Qt4 documentation a number of times over and I still can't really figure out which ...
1
vote
1answer
74 views
QThread doesn't work well
this's the QTread's subObject...
and concrete it in main Thread....
the Runtime error as follow:
ASSERT failure in QCoreApplication::sendEvent: "Cannot send events to
objects owned by a ...
1
vote
2answers
189 views
Qt QThread trouble using signal/slot going from worker to gui
I have a QT application that was developed using QT Creator and the GUI tool that accompanies it. I have a main thread, TheGui and a worker thread that is created by the main thread, WorkerThread ...
1
vote
1answer
168 views
QThread won't stop / does not process a signal
I am trying to perform some work in a separate thread and stop that thread when the work is done.
I have set up a connection like this
thread.connect( workerClass, SIGNAL( finished() ), SLOT( ...
1
vote
1answer
162 views
QPluginLoader moved to thread
I'm building an application that will rely heavily on plugins: the core gets data from a serial interface and delivers it to each plugin so each one can decide what to do with it.
My design allows ...
1
vote
0answers
209 views
PyQt: timers cannot be started from another thread
I am making a Qt GUI with python and i am getting the error: QObject::startTimer: timers cannot be started from another thread. It occurs when I run the readModemSnap method. I've been working on this ...
1
vote
2answers
176 views
QThread never runs/finishes before it can be used?
I have created a custom QObject class called EncodeThread, which looks as follows:
class EncodeThread : public QObject {
Q_OBJECT
public:
void set(SWSL::Video* v, QStringList f, QDir vDir);
...
1
vote
1answer
112 views
Moving a predifined class into a thread using Qthread
I am not too great a programmer and quite new to QT sorry for my wording.
I have an already created a sensor class in Qt in a different .cpp file from main, whenever i ran my program it ran slow and ...
1
vote
2answers
223 views
Declaring inside the run() method in QThread vs declaring as a local variable in QThread
Consider the following code snippets:
class ThreadA::QThread
{
public:
ThreadA()
{
}
void run()
{
myVariable = new int();
*myVariable = 10;
}
void Set(int var)
{
...
1
vote
4answers
2k views
Qt moveToThread() vs calling new thread when do we use each
When do we use each of this function calls in a threaded application.
given two functions fun1() and fun2() defined in the same class dealing with read/write of data into buffers(queue operation). to ...
1
vote
1answer
164 views
Modifying QStandardItemModel from non-UI QThread?
I have Qt4 app which binds QStandardItemModel to the QListView and have the model updated from background/non-UI thread.
Sometimes, when the QStandardItem's setText(..) method is called very ...
1
vote
2answers
125 views
Why are slots being called from the main thread?
I have a Qt application that has two threads: the main thread that handles the GUI and a second thread that manages network connections. Here is the thread code:
void thread::run()
{
QTcpServer ...
1
vote
1answer
402 views
one timer per thread using Qt
I modified Qt's broadcast sender example so that it has ten threads and in each thread it starts a timer, but only timer of the first thread is triggered. How can I have one timer running for each ...
1
vote
3answers
1k views
how can i inherit from both QWidget and QThread?
I have a class like this
class GUI : public QWidget, public QThread
When I do the above i get errors about connect signals. The error says "Reference to "connect" is ambiguous". Is ...
1
vote
1answer
528 views
Question about QThread implementation
A QThread object represents a single thread of execution. But is the OS thread created when the QThread object is created, or when the start() method is called?
I'm interested in whether I can have ...
1
vote
3answers
7k views
*** glibc detected *** double free or corruption (fasttop):
A call to clear on a QByteArray generates the following exception:
* glibc detected * /home/yan/FPS2/FPS2: double free or corruption (fasttop):
0 ??
1 ??
2 free
3 QByteArray::clear()
4 ...
0
votes
0answers
21 views
Terminating a QThread running a series of WGET command
I am trying to implement a QObject class which executes a script having a series of wget commands. This object is running in a thread as shown in code below:
...
0
votes
0answers
44 views
Timers cannot be started from another thread
I keep receiving this warning
QObject::startTimer: timers cannot be started from another thread
and all I do is that I have a main GUI class that at some point starts a thread and this thread has no ...
0
votes
0answers
50 views
Qt creating children threads using QFuture error
I am trying to make a Collaborative Editor(I have to use Linux networking libraries for all the networking stuff), I have the main widget(custom made class that inherits QWidget) with all the ...
0
votes
2answers
38 views
Controlling a QObject working in another thread, bypassing event queue, freezes the GUI
I'm working with QThread and slots/signals mechanism; I know there's a lot of threads about this on the Web in general and here at SO in particular, but I still could not find a solution. Anyway, here ...
0
votes
2answers
55 views
Which protection method to use (mutex , readwritelock ..) on thread inner function
I have a thread that is polling data from web service and then sending it to different class to handle the data. The process of that data can takes a long time, sometimes more than the timer interval ...
0
votes
1answer
55 views
If i invoke QMetaObject::invokeMethod from thread to singletone is the invokation is still in that qthread?
i have thread (working great ) that invoking method in singletone object like this:
bool bInvokeUpdate= QMetaObject::invokeMethod(ApiManager::getInstance(),
"updateMainWindowTree",
...
0
votes
1answer
53 views
frequently update QLabel with image data from server
i am writing a program, that should show an image in QLabel in a QWidget. The images are sent from the server. First, I have a thread that is responsible for the connection and receiving data from the ...
0
votes
0answers
29 views
Qt: Button in parent widget receives clicks during execution of child dialog
I have some Qt code that looks like this:
MyWidget::slotButtonClicked()
{
MyDialog dialog;
dialog.exec();
}
The catch here is that MyDialog spawns a thread that does some I/O in the ...