Hi,

i detail the error...
//-----------------------------------------------------------------------------
//
// Description:  set processor affinity for the thread
//
// Use: public
//
int Thread::setProcessorAffinity(unsigned int cpunum)
{
 ----------->   QtThreadPrivateData* pd = 
static_cast<QtThreadPrivateData*>(_prvData);
    pd->cpunum = cpunum;
    if (!pd->isRunning) return 0;
    
    // FIXME:
    // Qt doesn't have a platform-independent thread affinity method at present.
    // Does it automatically configure threads on different processors, or we 
have to do it ourselves?
    return -1;
}

Thank you!

Cheers,
Michele

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=38800#38800





_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to