Displaying 3 results from an estimated 3 matches for "deletedll".
2005 Dec 09
2
segfault following a detach
...------------------
==20262== Conditional jump or move depends on uninitialised value(s)
==20262== at 0x1B92D888: R_getDLLRegisteredSymbol (Rdynload.c:665)
==20262== by 0x1B92D9C5: R_dlsym (Rdynload.c:735)
==20262== by 0x1B92D0BD: R_callDLLUnload (Rdynload.c:412)
==20262== by 0x1B92D15B: DeleteDLL (Rdynload.c:439)
==20262==
==20262== Conditional jump or move depends on uninitialised value(s)
==20262== at 0x1B92D8D2: R_getDLLRegisteredSymbol (Rdynload.c:681)
==20262== by 0x1B92D9C5: R_dlsym (Rdynload.c:735)
==20262== by 0x1B92D0BD: R_callDLLUnload (Rdynload.c:412)
==20262== by 0x1...
2001 May 13
1
Dynamic C Symbols and Embedding Suggestion
...up its function list just after
R_ReplDllinit() just before entering the do1-loop--- though perhaps this
should be integrated into some part of the setup procedure for embedding
apps.
DllInfo* R_RegisterEmbeddedExecutable(HINSTANCE handle,char* path)
{
char* dpath,*name,DLLname[PATH_MAX], *p;
DeleteDLL(path);
if(CountDLL == MAX_NUM_DLLS) {
strcpy(DLLerror,"unable to register embedded executable.
too many libraries");
return 0;
}
dpath = malloc(strlen(path)+1);
if(dpath == NULL) {
strcpy(DLLerror,"Couldn't allocate space for 'path'");
return 0;...
2009 Aug 13
1
segfault when unloading a shared library
Hi All,
I'm still actively researching this problem (reading R-ext manual),
but I hoped that I might be able to get some additional insight from
the list given that I'm fairly new at writing R extension code.
Problem: I have some fairly simple code (.Call interface) that makes
a call to another shared library, which, in turn, calls routines in an
HDF5 shared library. The good news