5

我已经构建了一个基于 RCP 的应用程序,而我的一个用户在 Windows XP、Sun JVM 1.6.0_12 上运行时发生了完整的应用程序崩溃。应用程序运行两天后(这不是新版本或任何东西),他得到了漂亮的灰色 JVM 强制退出框,退出代码=1073807364。

当时他不在机器旁,我在应用程序日志中唯一能找到的就是与数据库的一些通信(通过 Hibernate 实现的 SQL Server)。据我所知,没有 hs_ 文件或任何类似的文件。网络搜索在各种应用程序中发现了一堆带有该退出代码的崩溃报告,但我没有看到任何导致它的基本解释。

谁能告诉我是什么原因造成的?是否有可能已被转储的其他信息可能被证明有用?

4

1 回答 1

2

From what I can tell, this error code (0x40010004) arises in all sorts of situations, with (as you noted) no obvious common thread.

However this page says "0x40010004" means "the task is running"! So, I would surmise that the correct way to interpret it is as saying "this tasked has exited in a way that prevented it setting a proper exit code".

I don't know if this will help, but I would try looking in the Windows Event logs to see if the problem is being reported there.

于 2010-02-01T03:01:28.267 回答