Skip to content

Commit

Permalink
update verion to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
WuBingzheng committed Jun 20, 2016
1 parent 35c1055 commit 36569c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Because target progress's each memory allocation/free API invokes a TRAP, the
performance impact depends on how often the target program calls memory
APIs.
For example, it impacts lightly to nginx with HTTP, while heavily with HTTPS,
because OpenSSL calls malloc seriously.
because OpenSSL calls malloc terribly.

Although performance impact is worthy of consideration, since `memleax` is
run to attach the target progress only when you certain it is in memory leak,
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for opt in $@; do
prefix=$value
;;
'--version')
echo "version: 0.2"
echo "version: 0.3"
exit 0
;;
'--help')
Expand Down
2 changes: 1 addition & 1 deletion memleax-centos.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Summary: memleax detects memory leak of a running process
Group: Development/Debuggers
URL: https://github.com/WuBingzheng/memleax
Vendor: Wu Bingzheng
Version: 0.2
Version: 0.3

License: GPL
Release: 1.el7
Expand Down
2 changes: 1 addition & 1 deletion memleax.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ int main(int argc, char * const *argv)
printf("%s", help);
return 0;
case 'v':
printf("Version: 0.2\n");
printf("Version: 0.3\n");
printf("Author: Wu Bingzheng\n");
return 0;
default:
Expand Down

0 comments on commit 36569c5

Please sign in to comment.