Hi,
Here are some patches for Monkey:
[1/3] Config: remove unnecessary semicolon
[2/3] Scheduler: Fix off-by-one error
On my Linux box, according to the output of mk_details() there are
:
* * 4 threads, 126 client connections per thread, total 504*
However when deciding whether client numbers have exceeded the
max connection
numbers of a thread we have :
`cur >= config->worker_capacity`
where worker_capacity is 126 on my machine, so there can
actually have total
500 connections. I think it is supposed to be:
`cur > config->worker_capacity`
[3/3] Cheetah: Add a function to strip leading and trailing whitespace of
input command line
I added this function to make cheetah more tolerant of user input.Best Regards, swpd
0001-Config-remove-unnecessary-semicolon.patch
Description: Binary data
0002-Scheduler-Fix-off-by-one-error.patch
Description: Binary data
0003-Cheetah-Add-a-funtion-to-strip-leading-and-trailing-.patch
Description: Binary data
_______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
