기술지원 문의

레진 error.log에 아래와 같은것이 간간히 뜹니다 이것의 원인이 무엇인지요??
이동규 / 2003-05-15 00:00

Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC                = 0xb3238
SIGNAL            = 11
FUNCTION NAME     = (N/A)
OFFSET            = 0xFFFFFFFF
LIBRARY NAME      = (N/A)
Please check ERROR REPORT FILE for further information, if there is any.

Re:레진 error.log에 아래와 같은것이 간간히 뜹니다 이것의 원인이 무엇인지요??
관리자 / 2003-05-16 00:00

제가  자료를 찾아보니 JDK 1.3.1 release노트에 그와 유사한 
글이 있네요. 아래글은 그 중 해당 내용입니다.

-------------------------------------------------------------------
다음과 유사한 오류 메시지가 나타나면서 프로그램이 종료된 후 JNI 버그로 인해 JVM이 충돌할 수 있습니다. 
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC                = 0x0x41621c7a
SIGNAL            = 11
FUNCTION NAME     = (N/A)
LIBRARY NAME      = (N/A)
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.

이 문제는 이론적으로 Microsoft Windows 및 Solaris 플랫폼 모두에 발생할 수 있지만 대부분 Linux Red Hat 7.1 SMP에서 발생합니다. 
해결 방법 - 응용프로그램의 main 메소드의 마지막 부분에 명시적인 종료 호출을 다음과 같이 추가하십시오. Runtime.getRuntime().exit(0) 

Red Hat 7.1의 자동 마운트된 NFS 상에서 Java 플랫폼에 코드를 실행하면 Red Hat의 dlopen()에서 자주 충돌할 수 있습니다. 이 문제는 명백히 NFS 자동 마운터로 인해 발생하며 mount -t nfs로 디렉토리를 명시적으로 마운트하면 이 문제가 없어집니다. 
--------------------------------------------------------------------

--이동규 님의 글 [2003-05-15 20:52:42]
>Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC                = 0xb3238
SIGNAL            = 11
FUNCTION NAME     = (N/A)
OFFSET            = 0xFFFFFFFF
LIBRARY NAME      = (N/A)
Please check ERROR REPORT FILE for further information, if there is any.