由买买提看人间百态

topics

全部话题 - 话题: debuger
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c*****t
发帖数: 1879
1
来自主题: Programming版 - 怎么debug一个GUI program?
en, this is one very annoying part of debugging gui.
y*h
发帖数: 107
2
来自主题: Programming版 - 怎么DEBUG这样的APPLICATION
It is a huge database application by using Hibernate. 50 million
data records are in the database.
how to debug this kind of App? Is there any general approach ?
Any idea or suggestion would be highly appreciated.
l*****d
发帖数: 359
3
来自主题: Programming版 - dev-c++是不是debug时有问题啊?
有时候debug功能会失灵或混乱,有谁用过这个debugger么?
r****q
发帖数: 356
4
来自主题: Programming版 - how to debug multi-thread program?
I am using pthread, how do not know how to debug the program when there is
deadlocks and how to know the program is in deadlock?
g*********s
发帖数: 1782
5
来自主题: Programming版 - how to debug multi-thread program?
This is tough. It's like: how to debug the program when there's an infinite
loop in single thread.
b***y
发帖数: 2799
6
来自主题: Programming版 - [合集] Debugging large macro
☆─────────────────────────────────────☆
wikipad (就是好用) 于 (Tue Mar 25 20:44:41 2008) 提到:
Do you guys have any experience to share about debugging large macros? I am
using sunstudio. It definitely can not give a direct location where I am
inside the Macro. My current solution is to understand the complex macro
completely and set breakpoint at possible places. Do you guys have any
better solution? I heard that in VisualStudio people can locate in the
preprocessed file. Is that true. Thanks
☆──
c**t
发帖数: 2744
7
来自主题: Programming版 - 问matlab debug的问题
逐步执行,如何不退出debug session,回到前面/执行过的语句?
s******n
发帖数: 21
8
Debugging Applications by John Robbins is a very good book for window
platform
t**r
发帖数: 512
9
来自主题: Programming版 - debug的问题
why can't u debug directly when it crash?
if u have no time,u can just leave it there,it will not run at all
sorry,maybe i don't know what u want
r*********r
发帖数: 3195
10
来自主题: Programming版 - mysql debugging 真麻烦
要改 mysql 内部的一个模块 (storage engine).
程序写得差不多了, 发现debug起来真麻烦.
编译完 server后, 安装, 启动, 然后启动 client 运行SQL 语句, 然后查看server
log,
server 杀起来也很麻烦, 还得另开一窗口敲 kill -9. 然后改程序, 再重复.
以前很少搞这种 server/client 结构的调试, 不知道有没有简洁一点的调试方法???
s*****w
发帖数: 1527
11
【 以下文字转载自 Seattle 讨论区 】
发信人: somehow (淡泊明志,宁静致远), 信区: Seattle
标 题: Help: windows debugging question: "new" caused access violation
发信站: BBS 未名空间站 (Sun Dec 12 22:07:02 2010, 美东)
We develop a SW, after install and reboot.
The 1st time it runs the app, there's a "just-in-time" error.
So hook it to the VS 2005, from the stack i can see our app calls "new",
it calls malloc/heap etc.
Now if i reboot the pc, retry all these, everything is ok now.
Our app has that "user access control" thing, if turn o... 阅读全帖
g*****1
发帖数: 998
12
【 以下文字转载自 JobHunting 讨论区 】
发信人: guagua1 (), 信区: JobHunting
标 题: vc++的debug状态下如何watch stl map里的全部内容?
发信站: BBS 未名空间站 (Fri Mar 4 15:15:30 2011, 美东)
比如我有一个很大的map,但是watch里只能看前100,不知道如何才能看到全部?
k**l
发帖数: 2966
13
来自主题: Programming版 - gdb debug c++的问题
公司的程序很长,我只改其中一段。现在总是crash (好像不是我改的部分出的问题),
因为要在server上测所以只好用gdb debug了。刚学gdb,这backtrace全是地址咋办---
或者这个suggest哪类地方的错?有什么(其他)办法可以看出哪一段程序出了错么?
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x4820c940 (LWP 21185)]
0x0000000103000000 in ?? ()
(gdb) bt
#0 0x0000000103000000 in ?? ()
#1 0x3b00483db16c0105 in ?? ()
#2 0x0000003101000000 in ?? ()
#3 0x000000002f685900 in ?? ()
#4 0x3701000000000000 in ?? ()
#5 0x0103000000003222 in ?? ()
#6 0x3db16c0106000000 in ?? ()
#7... 阅读全帖
D*******a
发帖数: 3688
14
来自主题: Programming版 - gdb debug c++的问题
make a debug build, adding -g -O0 when you compile
r****t
发帖数: 10904
15
来自主题: Programming版 - gdb debug c++的问题
debug build 的时候用到的包对应的 -dbg 包也要装。
a****h
发帖数: 126
16
来自主题: Programming版 - 一个debug的问题
when adding a LIST (i.e., list L ) to watched variable list, I still
can't see their values change while debugging. How do
your guys monitor LISTS?
Thanks.
p*********t
发帖数: 2690
17
来自主题: Programming版 - php怎么debug呢?
我一般加一行打印命令,最原始的debug方法,不過很有效.
c*****m
发帖数: 1160
18
no I don't have any reason. The project has been like this when I took over
it.
I have no idea what to do with msvcrt.lib, libcmt.lib, msvcrtd.lib. What is
the common practice about them, in debug/release mode?
I am lack of this kind of knowledge. I only focus on the programming stuff,
never look into compilation/link thing.
Thanks.
c*****m
发帖数: 1160
19
summary:
When the previous programmer added the external lib, he might get a wrong
one, maybe add an dynamic one for static link, or maybe that lib was buggy,
then the project is not working.
So the programmer added the /NODEFAULTLIB to get it working in Debug mode.
He wasn't able to make it work in Release mode, and he decided to leave it
like that, thinking that is the best interest for this project. Fxxk u!
With the correct lib of new version, and the help from thrust, it is working
well now.
m*****g
发帖数: 278
20
来自主题: Programming版 - 求推荐:fortran好用的debug软件
刚刚接触fortran,不知道哪个debug软件比较好用呢,比如想设置断点,实时观察变量
赋值,或者可以一步一步运行程序。linux或者windows都可以。
谢谢大家!
b*******s
发帖数: 5216
21
gdb一点输出都没有? 你确定你build了一个debug版本?
b*******s
发帖数: 5216
22
gdb一点输出都没有? 你确定你build了一个debug版本?
F****3
发帖数: 1504
23
来自主题: Programming版 - SAS在Linux环境下运行太难debug了
主要是这个统计软件算完以后会出结果 和 log,我想看结果和log,这样才能debug,
但是每次都要用ssh手动点来下载log和结果。很麻烦。不知道有没有一体化的。。。?
L******e
发帖数: 136
24
来自主题: Programming版 - 这样的deadlock如何debug?
一个多线程程序,(C#),所有的Lock看起来都没有问题,运行起来会有Deadlock。程
序本身读取多个文件并存入数据库,(SQL server),有可能是C# Lock和SQL server
lock相互产生deadlock。
如何debug这样的情况呢?
p****r
发帖数: 165
25
when in debug mode, it shows
CXX0017: Error: symbol "XXX" not found
is there a way to set compiler/linker option so the value will show?
I've already include /Od to disable the optimization.
thanks.
p*****y
发帖数: 1049
26
面试题:在debug 的时候,发现函数return to a “wild” place
这是什么原因?
d**********x
发帖数: 4083
27
来自主题: Programming版 - 求教linux下debug的问题
1. 打断点怎么会打不进去。。。你肯定是弄错了
2. 打log的方式适合调试和UI有关的bug,一般的bug还是断点比较好
3. 如果单步了半天没有头绪,不妨跳出来用脑子分析下问题,想想debug策略
4. 十几个函数真不算多
5. gdb可以存profile的,你google一下,省得每次开gdb还要把断点重新打一遍。

if
..
r*********r
发帖数: 3195
28
来自主题: Programming版 - 求教linux下debug的问题
try valgrind, especially if you doubt there's memory leak.
valgrind basically makes linux the best platform to debug code.
c********l
发帖数: 8138
29
来自主题: Programming版 - IIS+PHP 如何debug???
IIS+PHP 如何debug?
另外,如何查看PHP的log/console?
y*****n
发帖数: 11251
30
来自主题: Programming版 - IIS+PHP 如何debug???
查看iis的log wwwsvc什么的,确定client确实访问了页面
然后php没什么好的debug办法。就是用自己的logfile了。
c*********e
发帖数: 16335
31
javascript真心太难用了,非常难debug. sigh
p*****w
发帖数: 429
32
有具体什么问题吗

javascript真心太难用了,非常难debug. sigh
t****a
发帖数: 1212
33
来自主题: Programming版 - 脚本比较大的问题就是DEBUG
脚本编程没有比较大的问题,赵策兄你有比较大的问题,需要好好学习脚本编程
个人觉得,靠DEBUG来找错本身就是很低效率的行为
有本书叫做interactive programming,好好看看吧。interactive programming是人月
神话中宣称的70年代编程领域效率提高的两种主要方法之一
我写脚本的时候,写一行测一行写一个函数测一个函数,所以一路写下来,程序都是对
的。怎么测?用REPL。如果有emacs,C-c C-c就测试了。测完了像整个unit test就整
,不想就扔了算了
写程序的时候就保持一个使得程序容易测试的念头:比如,在逻辑上分块,写容易测试
修改的小函数,使用函数式风格,都是办法
z****e
发帖数: 54598
34
来自主题: Programming版 - 脚本比较大的问题就是DEBUG
我用vi搞JAVA没有什么问题
基本上可以无bug
但是你要说让我去看别人写的代码
要很快debug出来,这个我自信水平达不到
我也不相信这里有谁能做到
毕竟人不是机器
我对错误的容忍度比较高,很少装,该用啥就用啥
不过分依赖人本身,因为人总归是人,犯错是常事
我大学老师,上黑板做四则运算都能算错
更何况是写点代码了
z****e
发帖数: 54598
35
来自主题: Programming版 - 脚本比较大的问题就是DEBUG
所以这个是对的
发信人: NeverLearn (24K golden bear), 信区: Programming
标 题: Re: 脚本比较大的问题就是DEBUG
发信站: BBS 未名空间站 (Thu Jan 30 17:44:29 2014, 美东)
脚本一旦动态起来连IDE都搞不清楚程序里面到底定义啥了。一个语言设计
到把IDE搞晕就在工程上很失败了。
m******t
发帖数: 635
36
来自主题: Programming版 - 脚本比较大的问题就是DEBUG
用ruby的话,上ruby-debug或者pry,设置断点,步进,当场修改变量值都可以
M*******r
发帖数: 165
37
来自主题: Programming版 - how to debug a hidden error
I am calling a exe from python, the exe would occasionally return a nonzero
value and been raised as error. The exe is written in c++ and the main
function is like:
int main(int argc, char *argv[]) {
xxxxxxxxxxxxxxxxxxxxx
return 0;
}
I suspected there is some memory leak in the code, but no warning no error
reported when I run it in debug/release mode...
BTW I'm working in VS12 environment.
M*******r
发帖数: 165
38
来自主题: Programming版 - how to debug a hidden error
I am calling a exe from python, the exe would occasionally return a nonzero
value and been raised as error. The exe is written in c++ and the main
function is like:
int main(int argc, char *argv[]) {
xxxxxxxxxxxxxxxxxxxxx
return 0;
}
I suspected there is some memory leak in the code, but no warning no error
reported when I run it in debug/release mode...
BTW I'm working in VS12 environment.
c***5
发帖数: 158
39
来自主题: Programming版 - Scala debug
发现SCALA的DEBUG真难。有好的经验吗?谢谢。
c***5
发帖数: 158
40
来自主题: Programming版 - Scala debug

你是用PRINTLN来看不用DEBUG吗?
h**********c
发帖数: 4120
41
来自主题: Programming版 - Scala debug
set kernel debug level to 1
see what happen then try next level
c***5
发帖数: 158
42
来自主题: Programming版 - Scala debug

谢谢。这是SCALA的DEBUGGER吗?我PASTE命令进了ECLIPSE。INI
但好象不能DEBUG SCALA啊?
l******t
发帖数: 55733
43
来自主题: Programming版 - Scala debug
怎么debug都行啊,难在哪
c***5
发帖数: 158
44
来自主题: Programming版 - Scala debug

一般的DEBUG MODE 好象看不到VARIABLE 的 VALUE
c***5
发帖数: 158
45
来自主题: Programming版 - how to debug
请问遇到复杂情况,你们如何DEBUG,有时很难用MOCK。
s*********y
发帖数: 6151
46
来自主题: Programming版 - 急求Nodejs的IDE或Debugging tool
So slow, sometimes the debugging function doesn't work
s*********y
发帖数: 6151
47
来自主题: Programming版 - 急求Nodejs的IDE或Debugging tool
我觉得一个好的debugging tool能帮我掌握asyc快一些。 好多时候我的code没问题
debugger自己跳出来了。 而且很多时候希望看到promise chain的中间过程。
T******7
发帖数: 1419
48
来自主题: Programming版 - java annotation怎么debug?
java annotation怎么debug?
一支困扰着我 这个问题
l**********n
发帖数: 8443
49
来自主题: Programming版 - java annotation怎么debug?
It is just data. why should you debug?
b******7
发帖数: 123
50
来自主题: Programming版 - java annotation怎么debug?
想debug AOP吧?
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)