Re: [OMPI devel] Adding a BTL module implementing poll()

2010-11-01 Thread Jeff Squyres
How are you linking in the mos_poll() implementation? Is it up in the BTL? If so, you'll need to move it down to the OPAL libevent section. This is because all OPAL things are built before any OMPI things, to include some executables (e.g., the opal/tools/wrappers directory). They link agains

[OMPI devel] Adding a BTL module implementing poll()

2010-10-31 Thread Alex Margolin
Hi, I'm developing a new module under for BTL component to utilize an existing distributed computing software in our lab. I decided to write a TCP-like interface (implementing socket(), connect(), accept(), send(), recv(), etc.) and then copy and modify the existing BTL TCP module to create my own.