Okay - new insight on this:

If all is run on a single host (Windows) I get a crash in

void PipelineComposer::writeResult(DepthT &depth,ColorT &color)
{
    TileBuffer   *tile;
    Connection   *dstConn;

#ifdef COMPRESS_IMAGES
    std::vector<UInt32> dst;
    dst.resize(512*512*8);
#endif
    for(;;)
    {
        _lock->aquire();
        if(_queue.empty())
        {
            _waiting = true;
            _lock->release();
            _barrier->enter(2);
            _lock->aquire();
        }
HERE >>>tile = _queue.front(); <<<<<<
        _queue.pop_front();
        _lock->release();
        if(!tile)
            break;

...the queue still seems to be empty when the client crashes!?

Running all on a single linux machine works ok, even with composing!


> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Thomas Beer
> Sent: Wednesday, April 25, 2007 3:06 PM
> To: [email protected]
> Subject: Re: [Opensg-users] SortLast Cluster Client
> 
> Hi,
> 
> I tried the SortLast client - it has the same behaviour as 
> the testClusterClient example from the Source directory:
> 
> The composing part doesn't work: When I chose SortLast 
> without composing, the testClusterClient example works and 
> each node renders different parts of the scene - but the 
> client window remains empty.
> When I switch on composing (via -LB(inarySwap) or 
> -LP(ipelineComposer)) the client hangs, just like the 
> 28SortLast-Example...
> 
> Any ideas?
> 
> Thomas
> 
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On 
> Behalf Of Dirk 
> > Reiners
> > Sent: Tuesday, March 20, 2007 6:49 AM
> > To: users
> > Subject: [Opensg-users] SortLast Cluster Client
> > 
> > 
> >     Hi Everybody,
> > 
> > to get to close the final ticket for 1.8 I've been trying 
> to write an 
> > example on how to use the sort last clustering in OpenSG.
> > 
> > The problem is that our network is pretty screwed up (don't 
> ask), so I 
> > can't test it. It's checked in as tutorial 28, can somebody please 
> > test it and tell me if it works?
> > 
> > Thanks
> > 
> >     Dirk
> > 
> > 
> > --------------------------------------------------------------
> > -----------
> > Take Surveys. Earn Cash. Influence the Future of IT Join 
> > SourceForge.net's Techsay panel and you'll get the chance to share 
> > your opinions on IT & business topics through brief 
> surveys-and earn 
> > cash http://www.techsay.com/default.php?page=join.php&p=sourceforge
> &CID=DEVDEV
> > _______________________________________________
> > Opensg-users mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/opensg-users
> > 
> > 
> 
> 
> 
> --------------------------------------------------------------
> -----------
> This SF.net email is sponsored by DB2 Express Download DB2 
> Express C - the FREE version of DB2 express and take control 
> of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Opensg-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/opensg-users
> 
> 



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to