Frank ramke
2006-10-23 13:58:53 UTC
I need to load an nlm from within a perl script that requires to be loaded
in the OS address space.
# hello.pl: very simple sample perl script
`smdr`;
print "Howdy, world!\n";
SMDR is unresolved because it requires to be loaded in the OS address space.
Changing the load command to
# hello.pl: very simple sample perl script
system "SMDR";
print "Howdy, world!\n";
works, but as discussed here in the past, is not good because the execution
returns immediately.
Any ideas?
Thanks,
Frank Ramke
in the OS address space.
# hello.pl: very simple sample perl script
`smdr`;
print "Howdy, world!\n";
SMDR is unresolved because it requires to be loaded in the OS address space.
Changing the load command to
# hello.pl: very simple sample perl script
system "SMDR";
print "Howdy, world!\n";
works, but as discussed here in the past, is not good because the execution
returns immediately.
Any ideas?
Thanks,
Frank Ramke