동적 라이브러리가 로드될 때 언로드 될 때 스스로 초기화 해야 할 필요가 있을 때 다음과 같이 작성한다. __attribute__((constructor)) static void initializer1() { printf(“[%s] [%s]\n”, FILE, FUNCTION); } __attribute__((destructor)) static void finalizer1() { printf(“[%s] [%s]\n”, FILE, FUNCTION); } 여러 개의 constructor나…
최신 댓글