发布时间:2013-10-24 17:12:00
今天在HP-UX上调试代码时,动态库下不了断点,提示如下信息warning: Cannot insert breakpoint 0: in /lib/xxx_codeD.slwarning: This is because your shared libraries arewarning: not mapped private. To attach to a processwarning: and debug its shared libraries you must warning: prepare the progr.........【阅读全文】
发布时间:2013-10-19 10:47:27
在测试中,发现一个进程起来,不处理数据cpu就已经高达100%,显然不正常。1、用pstack -p pid 查看进程的堆栈信息。发现有一个线程的堆栈比较奇怪,只有run函数,下边就没有系统函数调用了,正常的应该有调用系统的函数的,如sys_select(...)。2、用glance查看这个线程的cpu,先按s键,输入进程id,在按G键可以查看每个.........【阅读全文】
发布时间:2013-07-01 18:53:22
概述系统性能一直是一个受关注的话题,如何通过最简单的设置来实现最有效的性能调优,如何在有限资源的条件下保证程序的运作,ulimit 是我们在处理这些问题时,经常使用的一种简单手段。ulimit 是一种 linux 系统的内键功能,它具有一套参数集,用于为由它生成的 shell 进程及其子进程的资源使用设置限制。本文将在后.........【阅读全文】