diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-27 20:26:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-27 20:26:05 +0300 |
commit | 2cfa23d3040eb6c6911c85450cacfac4e104f4f4 (patch) | |
tree | c86ed116a85b322ae8d25f910a4a252b3817ec1e | |
parent | 7c6c2416bc152de0758d7441a373e260b40c4d5b (diff) | |
download | serverdata-2cfa23d3040eb6c6911c85450cacfac4e104f4f4.tar.gz serverdata-2cfa23d3040eb6c6911c85450cacfac4e104f4f4.tar.bz2 serverdata-2cfa23d3040eb6c6911c85450cacfac4e104f4f4.tar.xz serverdata-2cfa23d3040eb6c6911c85450cacfac4e104f4f4.zip |
Add script for run gprof. Also add temp files to .gitignore
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | gprof.sh | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -115,3 +115,5 @@ Thumbs.db *.txt~ *.conf~ *.py~ +/gmon.out +/gprof_* diff --git a/gprof.sh b/gprof.sh new file mode 100755 index 00000000..be6c9d03 --- /dev/null +++ b/gprof.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +gprof --inline-file-names ./${1} >gprof_${1}.txt |