Updated Branches: refs/heads/master af63c8ed5 -> fc3b25fe4
TS-1815: Change ET_AIO thread name layout for consistency Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/fc3b25fe Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/fc3b25fe Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/fc3b25fe Branch: refs/heads/master Commit: fc3b25fe452cb642f55fde260a565594bfb32e36 Parents: af63c8e Author: Phil Sorber <[email protected]> Authored: Wed Dec 4 10:23:51 2013 -0700 Committer: Phil Sorber <[email protected]> Committed: Wed Dec 4 10:23:51 2013 -0700 ---------------------------------------------------------------------- iocore/aio/AIO.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/fc3b25fe/iocore/aio/AIO.cc ---------------------------------------------------------------------- diff --git a/iocore/aio/AIO.cc b/iocore/aio/AIO.cc index a0fd386..99d3fa3 100644 --- a/iocore/aio/AIO.cc +++ b/iocore/aio/AIO.cc @@ -255,7 +255,7 @@ aio_init_fildes(int fildes, int fromAPI = 0) thr_info = new AIOThreadInfo(request, 1); else thr_info = new AIOThreadInfo(request, 0); - snprintf(thr_name, MAX_THREAD_NAME_LENGTH, "[ET_AIO %d-%d]", fildes, i); + snprintf(thr_name, MAX_THREAD_NAME_LENGTH, "[ET_AIO %d:%d]", i, fildes); ink_assert(eventProcessor.spawn_thread(thr_info, thr_name, stacksize)); }
