Hi,
I wanted to pop-up a message box from pthread
Code:
//my main process { //calling a function say f1(); } //in f1() I am creating a pthread { if (0!=pthread_create(&AnsiCommon.BALthread,NULL, Dys_BalThread,NULL)) { qDebug()<<"draw bal thread"; //fprintf(AnsiCommon.fpLogPI,"ECG Thread error\n"); } } //my thread function Dys_BalThread doing some calculations:After satisfying some conditins i wanted to pop-up a message box
can anybody help me.....?