Peace Lee

Results 71 comments of Peace Lee
trafficstars

I can't build Qt program ;( Could you share your program binary built statically. did you get the result of uftrace today? just statvfs can be called if QT_LARGEFILE_SUPPORT is...

I think I can't use your dynamic built binary in my system ;) I guess the second statvfs() call in your last test result is it that you expected as...

>How do you think about to clarify the algorithm for the lookup and checking of function names? I found that stavfs and statvfs64 have WEEK symbols and are sharing the...

>I am curious on further collateral evolution. There is no difference between statvfs() and statvfs64() in my x86_64 system. Have you tested it on 32bit system? >I became curious also...

there is no "record" command, use "rec" command instead of "record". if you wanna record events then execute commands as below. - record events including I/O and report to stdout...

>Are you going to delete references to the other command name? What do you mean? :) did you refer to old documents? >Would you like to add any more information...

>I suggest to reconsider the following specification once more. You are right! I'm going to fix it right now :) >Would you like to compare any analyses with approaches which...

Do you want to trace function calls for a specific task?

Guider has a function tracing feature for specific tasks. But it's overhead is not small so that I don't recommend to trace all functions. first, you can analyze performance at...

in addition, you can profile or trace running tasks with -g option. ``` # sleep 30 & # python3 guider.py utop -g sleep -H # sleep 20 & # python3...