I have a program which takes a lot of time to crash.
Is it possible to run the program and trace what is happening into a file, like trus does?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“It depends”.
If the program is doing a lot of system calls, like being very I/O intensive, you can probably glean something useful from running it through
strace. Otherwise, you might want to try profiling it and inspecting the profile. Note that profiling often requires that you are able to re-build the program to add the profiling instrumentation code.