Consider the following code snippets:
class ThreadA::QThread
{
public:
ThreadA()
{
}
void run()
{
myVariable = new int();
*myVariable = 10;
}
void Set(int var)
{
*myVariable = var;
}
private:
int* myVaraible;
}
and the following code:
class ThreadB::QThread
{
public:
MyThreadB()
{
}
void run()
{
myVariable = 10;
}
void Set(int var)
{
myVariable = var;
}
private:
int myVaraible;
}
I know the general theory of Mutexes, Race condition etc,
Assuming Set is always called after the thread is started, (i.e after a call to run()), Which thread owns "myVariable" in the execution of ThreadA and ThreadB ??
How does the main thread and QThread share resources in such a scenario ??
What is the scope and validity of myVariable within the QThread(i.e. ThreadA and ThreadB) and its main application ??
Thanks, Vishnu.