Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
434 views

How to get BACKTRACE (function + line number) on Solaris?

I have done some code in C that happily send the full backtrace with function name and line number to a log file. This was done using a mixture of backtrace, backtrace_symbols and dladdr and ...
0
votes
1answer
241 views

Unix script to kill a process after checking a condition several times and also run periodically

I want to write a unix shell script to run a command 3 times in every 80 seconds and write the every sequence in a different line in a text file. And also if the all results are 10 or more in a line I ...