in reply to dynamic loading

Although you have a complex calling sequence, the real problem is with your embedded perl. Whoever embedded perl in the C program did not include the dynamic loading code library appropriate to your operating system. What this means is that pure perl modules, such as UserLib.pm will work, but modules that use C libraries, such as POSIX, will not be able to load and execute properly.

If you are a layman, talk to the person who wrote the C program and ask them to configure the embedded perl to use dyamic loading and to build the C app with the above mentioned libraries for dynamic loading.

-Mark

Replies are listed 'Best First'.
Re^2: dynamic loading
by rocketboy (Novice) on May 07, 2006 at 07:30 UTC
    I am the one who wrote the c code . Thank you for your suggestions. This is really great. I get replies so quickly. Thats awesome.