ChinaUnix.net
相关文章推荐:

core dump ubuntu 目录

when trying to load the block driver, the system crashed and gave a core dump. use dumpadm to show where the dump file is, -bash-3.00# dumpadm dump content: kernel pages dump device: /dev/dsk/c0d0s1 (swap) Savecore directory: /var/crash/sunhost Savecore enabled: yes but on solaris 6 or earlier release, modify /etc/inid.d/syssetup to change the directory. -bash-3.00# ls -l t...

by jack_zheng - Solaris文档中心 - 2007-05-16 18:42:57 阅读(762) 回复(0)

相关讨论

/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/6889/showart_481166.html

by lc0060305 - Java文档中心 - 2008-02-20 13:56:32 阅读(1837) 回复(0)

int OpenLogFile(char *FilName) { char itasLogFile[256]; memset(itasLogFile,0x00,sizeof(itasLogFile)); if( NULL == getenv("ITASLOGDIR")){ /*获得环境变量中设置的程序的目录*/ return FAILED; } memcpy(itasLogFile,getenv("ITASLOGDIR"),strlen(getenv("ITASLOGDIR"))); /*保存环境变量*/ strcat(itasLogFile,"/"); strcat(itasLogFile,FilName); if((LogFile...

by fish-fly - C/C++ - 2009-07-21 15:27:39 阅读(2090) 回复(2)

(gdb) where #0 0x00bbae2b in ?? () #1 0x00b8f155 in ?? () #2 0x00000043 in ?? () #3 0x00ba714b in ?? () #4 0xb25911ac in ?? () #5 0x080c262d in typeinfo name for msnp2p () #6 0xb25912c8 in ?? () #7 0x080d38d9 in MSNDEBUG(int, char*, ...)::buffs () #8 0xfbad8001 in ?? () #9 0x080d38d9 in MSNDEBUG(int, char*, ...)::buffs () #10 0x080d38d9 in MSNDEBUG(int, char*, ...)::buffs () #11 0x080d39...

by benjiam - C/C++ - 2009-03-07 14:15:19 阅读(7698) 回复(11)

看到apue中有这样一个函数: [code] /* * Fatal error related to a system call. * Print a message, dump core, and terminate. */ void err_dump(const char *fmt, ...) { va_list ap; va_start(ap, fmt); err_doit(1, errno, fmt, ap); va_end(ap); abort(); /* dump core and terminate */ exit(1); /* shouldn't get here */ } [/code] 看过apue的应该很熟悉。但实际使用时ab...

by jamesr - C/C++ - 2008-06-21 18:07:18 阅读(1830) 回复(7)

我在FreeBSD中用tar包编译安装apache(2.0.x), ./configure --prefix=/usr/local/apache2 编译完并安装成功后, 在/usr/local/apache2/bin/apachectl -k start启动apache 但系统提示 Buss err(core dump) ! 网上有说可能是有硬件问题引起的, 但我现在还暂时用虚拟机在跑FreeBSD, 不知道是什么原因,还望有遇到相似问题的同仁指教! [ 本帖最后由 lin_wang 于 2007-3-12 14:14 编辑 ]

by lin_wang - BSD - 2007-03-13 17:20:43 阅读(1544) 回复(5)

ST-370 Course Objectives Upon completion of this course, you should be able to: Set up your system to capture kernel core dumps Gather and interpret kernel core dumps to a probable cause using adb and kadb macros Create adb macros to aid and simplify kernel core dump analysis Follow an organized approach in analyzing kernel core dumps Cuase of Panic userdata;sync 5. system will reboot. check /var/...

by 东方蜘蛛 - Solaris文档中心 - 2006-09-27 10:18:44 阅读(1165) 回复(0)

我又一个solaris下的c语言程序,tcp通讯的.. 每次运行会产生一个core文件.但是程序仍然能正常运行,不会死掉. 问题会出在什么地方呢? 请老大给个线索. 多谢!

by lc1999 - C/C++ - 2004-12-03 17:42:23 阅读(776) 回复(0)

版主,我只知道gcc编译的可以用gdb调试 那么gdb能否用在unixware下?需要安装吗?能否说详细一点,谢谢

by scounixadmin - 其他UNIX - 2004-07-02 07:46:18 阅读(839) 回复(1)

操作系统版本:AIX5.2 ML 2 32bit (64bit extension) 编译器版本:vacpp 5.0.1.0 应用是一个多线程程序。编译时使用如下编译选项: xlC_r -bmaxdata:0x80000000 -qthreaded -brtl -g -o $@ *.o -G -bexpall -bnoentry -brtl -qthreaded -qlonglong -qlongdouble -q32 -qinline -qstaticinline -DPTHREADS -DTHREAD -D_BIG_ENDIAN_ -DAIX -DTSAPI_CODEC -DCSTA_CODEC -g -qcpluscmt 现象:执行一段时间后,程序core dump 退出...

by rain751 - AIX - 2003-12-31 11:04:42 阅读(1729) 回复(0)