[eq-dev] Avoiding eq::Client?

Martin Lambers lambers at fb12.uni-siegen.de
Fri Sep 4 13:47:14 CEST 2009


Hello!

In my application, I do not use eq::Client. Instead, I just use the
following:

for initialization:

EqNodeFactory eq_node_factory;
eq::init(argc, argv, &eq_node_factory));
EqConfig *eq_config = static_cast<EqConfig *>(eq::getConfig(argc, argv));
// The following code is only executed on the application node because
// eq::getConfig() does not return on other nodes
...

for deinitialization:

eq_config->exit();
eq::releaseConfig(eq_config);
eq::exit();

and in the loop:
...
eq_config->startFrame();
eq_config->finishFrame();
...


This worked with version 0.6, but with 0.9, I get segmentation faults
during eqConfig::exit().

What do I need to change?

Regards,
Martin
-- 
Computer Graphics and Multimedia Systems Group
University of Siegen, Germany
http://www.cg.informatik.uni-siegen.de/



More information about the eq-dev mailing list