반응형
dlerror(3)
#include <dlfcn.h>
char *dlerror(void);
dlerror(3)함수는 dlopen(3), dlsym(3), dlclose(3)를 호출한 후에 발생한 마지막 오류를 사람일 알 수 있는 문구로 return합니다. 또한 이 함수를 호출하면 오류 상태도 초기화 됩니다.
파라미터
없음
RETURN
NULL
- 정상적으로 처리되었습니다.
NULL 아님
- 오류가 발생하였으며, 발생한 오류 문구를 사람일 알 수 있도록 return합니다.
활용 예제
Sample). cos()함수 호출 예제
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
int main(int argc, char **argv)
{
void *handle;
double (*cosine)(double);
char *error;
handle = dlopen("libm.so", RTLD_LAZY);
if (!handle) {
fprintf(stderr, "%s\n", dlerror());
exit(EXIT_FAILURE);
}
dlerror(); /* Clear any existing error */
/* Writing: cosine = (double (*)(double)) dlsym(handle, "cos");
would seem more natural, but the C99 standard leaves
casting from "void *" to a function pointer undefined.
The assignment used below is the POSIX.1-2003 (Technical
Corrigendum 1) workaround; see the Rationale for the
POSIX specification of dlsym(). */
*(void **) (&cosine) = dlsym(handle, "cos");
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
exit(EXIT_FAILURE);
}
printf("%f\n", (*cosine)(2.0));
dlclose(handle);
return 0;
}
see also: Shared Library 관련 API
반응형
'C언어 header > dlfcn.h' 카테고리의 다른 글
dlclose(3) - dynamic library unload (0) | 2019.10.01 |
---|---|
dlsym(3) - loading된 shared library에서 symbol 찾기 (0) | 2019.10.01 |
dlopen(3) - dynamic library open (0) | 2019.10.01 |