应用程序发生异常0xc0000095_0xc0000142

应用程序发生异常0xc0000095_0xc0000142Hi,Imadeanexewhichisforsystemtray,thisexetogetsystemeventnotificationas(logoff&Shutdown)..itsworkingfinefor1-2hoursbutafterthatthisexeisgoingtocrashIamunable…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

应用程序发生异常0xc0000095_0xc0000142

Hi,

I made an exe which is for system tray, this exe to get system event notification as (log off & Shut down)..its working fine for 1-2 hours but after that this exe is going to crash I am unable to get from where that problem is coming when I am seeing in Application log this error showing

Faulting application name: Client.exe, version: 1.0.0.1, time stamp: 0x4eabedf6

Faulting module name: Client.exe, version: 1.0.0.1, time stamp: 0x4eabedf6

Exception code: 0xc0000005

Fault offset: 0x0001d5ce

Faulting process id: 0x898

Faulting application start time: 0x01cc99f249ae325d

Faulting application path: C:\Windows\System32\Client.exe

Faulting module path: C:\Windows\System32\Client.exe

Report Id: 06896f3e-05ec-11e1-a23a-7071bca3c6d8

please tell me….

Thanks

解决方案Well the only thing we can tell you is that you have a memory access exception somewhere in your code. Round about offset 0x0001d5ce, although that may not be where the bug is. You need to do some work analysing your code, running it through the debugger, and adding some trace data, in order to find out where it is happening.

If possible, run in debug mode with the debugger attached.

Otherwise, the line Fault offset: 0x0001d5ce gives you the location in the raw assembly. I cannot think of a way which is easy to explain, unless you are familiar with reverse engineering.

Another possibility is to add a crash handler. See MSDN[^].

If no one else can suggest a better solution let me know and I can give more help with finding the cause.

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/188054.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • C语言:字符数组的输入输出

    C语言:字符数组的输入输出目录用printf输出用scanf输入用gets输入用puts输出 用printf输出 输出方法1:printf逐个字符输出。  voidmain(void){   charc[ ]="Iamhappy";     inti;      for(i=0;i<10;i++){ …

    2022年7月27日
    5
  • JVM基础和调优[通俗易懂]

    JVM基础和调优[通俗易懂]CMS和G1回收器,G1的并发标记周期,为什么要JVM调优?减少GC,特别是FullGC对象优先在堆的Eden区分配大对象直接进入老年代长期存活的对象将直接进入老年代.当Eden区没有足够的空间进行分配时,

    2022年6月9日
    30
  • Elasticsearch数据库优化实战:让你的ES飞起来

    Elasticsearch数据库优化实战:让你的ES飞起来摘要:ES已经成为了全能型的数据产品,在很多领域越来越受欢迎,本文旨在从数据库领域分析ES的使用。

    2022年5月5日
    51
  • 半小时实现Java手撸Http协议,爽!!(附完整源码,建议收藏)「建议收藏」

    半小时实现Java手撸Http协议,爽!!(附完整源码,建议收藏)「建议收藏」冰河就趁着周末,只用了几个Java类就简单的实现了Http协议,爽!!

    2022年8月22日
    4
  • scp命令拷贝文件

    scp命令拷贝文件简介scp(securecopy)是一个基于SSH协议在网络之间进行安全传输的命令。如果是从本地拷贝到远程,格式为:scp文件用户名@IP地址:目标目录如果是从远程拷贝到本地,格式为:scp用户名@ip地址:带路径文件名本地目录参数-v显示详细的连接进度-P指定远程主机的sshd端口号-r用于传送文件夹-6使用IPv6协议例子从本地拷贝到远程[root@localhost~]#scpmyhistory.txtroot@192.168.31.

    2022年8月22日
    9
  • document.all用法(一)

    document.all用法(一)1、理解document.all[]  从IE4开始IE的objectmodel才增加了document.all[],来看看document.all[]的Description:ArrayofallHTMLtagsinthedocument.Collectionofallelementscontainedbytheobject.  也就是说document.all

    2022年7月12日
    17

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号