tools: Add wrk for benchmarking http servers
authorisaacs <i@izs.me>
Wed, 13 Feb 2013 20:19:08 +0000 (12:19 -0800)
committerisaacs <i@izs.me>
Wed, 20 Feb 2013 01:16:18 +0000 (17:16 -0800)
commite850cbab1c83c9457f653c6241da5c74d2d0ab0e
tree43f4968faf7b4723db252562c865dd0429489722
parent035aa6b4cefc0b1d5bab8ffdcb5c63593ef8d190
tools: Add wrk for benchmarking http servers
28 files changed:
.gitignore
Makefile
tools/wrk/.gitignore [new file with mode: 0644]
tools/wrk/LICENSE [new file with mode: 0644]
tools/wrk/Makefile [new file with mode: 0644]
tools/wrk/NOTICE [new file with mode: 0644]
tools/wrk/README [new file with mode: 0644]
tools/wrk/src/ae.c [new file with mode: 0644]
tools/wrk/src/ae.h [new file with mode: 0644]
tools/wrk/src/ae_epoll.c [new file with mode: 0644]
tools/wrk/src/ae_evport.c [new file with mode: 0644]
tools/wrk/src/ae_kqueue.c [new file with mode: 0644]
tools/wrk/src/ae_select.c [new file with mode: 0644]
tools/wrk/src/aprintf.c [new file with mode: 0644]
tools/wrk/src/aprintf.h [new file with mode: 0644]
tools/wrk/src/config.h [new file with mode: 0644]
tools/wrk/src/http_parser.c [new file with mode: 0644]
tools/wrk/src/http_parser.h [new file with mode: 0644]
tools/wrk/src/stats.c [new file with mode: 0644]
tools/wrk/src/stats.h [new file with mode: 0644]
tools/wrk/src/tinymt64.c [new file with mode: 0644]
tools/wrk/src/tinymt64.h [new file with mode: 0644]
tools/wrk/src/units.c [new file with mode: 0644]
tools/wrk/src/units.h [new file with mode: 0644]
tools/wrk/src/wrk.c [new file with mode: 0644]
tools/wrk/src/wrk.h [new file with mode: 0644]
tools/wrk/src/zmalloc.c [new file with mode: 0644]
tools/wrk/src/zmalloc.h [new file with mode: 0644]