mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
10 lines
405 B
Bash
10 lines
405 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
#valgrind --tool=memcheck --leak-check=yes --leak-check=full --show-reachable=yes --max-stackframe=3426305034400000 -v ./fiber -n 10 -m 20
|
||
|
valgrind --tool=memcheck --leak-check=yes --leak-check=full --show-reachable=yes -v ./fiber_connect -S
|
||
|
|
||
|
echo ""
|
||
|
echo "Enter any key to continue..."
|
||
|
read n
|
||
|
valgrind --tool=memcheck --leak-check=yes --leak-check=full --show-reachable=yes -v ./fiber_connect
|