Skip to content

Commit 36569c5

Browse files
committed
update verion to 0.3
1 parent 35c1055 commit 36569c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Because target progress's each memory allocation/free API invokes a TRAP, the
4141
performance impact depends on how often the target program calls memory
4242
APIs.
4343
For example, it impacts lightly to nginx with HTTP, while heavily with HTTPS,
44-
because OpenSSL calls malloc seriously.
44+
because OpenSSL calls malloc terribly.
4545

4646
Although performance impact is worthy of consideration, since `memleax` is
4747
run to attach the target progress only when you certain it is in memory leak,

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for opt in $@; do
1515
prefix=$value
1616
;;
1717
'--version')
18-
echo "version: 0.2"
18+
echo "version: 0.3"
1919
exit 0
2020
;;
2121
'--help')

memleax-centos.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Summary: memleax detects memory leak of a running process
55
Group: Development/Debuggers
66
URL: https://github.com/WuBingzheng/memleax
77
Vendor: Wu Bingzheng
8-
Version: 0.2
8+
Version: 0.3
99

1010
License: GPL
1111
Release: 1.el7

memleax.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ int main(int argc, char * const *argv)
144144
printf("%s", help);
145145
return 0;
146146
case 'v':
147-
printf("Version: 0.2\n");
147+
printf("Version: 0.3\n");
148148
printf("Author: Wu Bingzheng\n");
149149
return 0;
150150
default:

0 commit comments

Comments
 (0)