This is an automated email from the ASF dual-hosted git repository. jpeach pushed a commit to branch master in repository https://git-dual.apache.org/repos/asf/trafficserver.git
commit 6fd403fceefcaab34502d618117791e3d5d681f4 Author: James Peach <[email protected]> AuthorDate: Thu May 5 21:18:23 2016 -0700 TS-4425: Stop using private Ptr::m_ptr in EThread. --- iocore/eventsystem/UnixEThread.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/eventsystem/UnixEThread.cc b/iocore/eventsystem/UnixEThread.cc index e395787..115d133 100644 --- a/iocore/eventsystem/UnixEThread.cc +++ b/iocore/eventsystem/UnixEThread.cc @@ -135,7 +135,7 @@ void EThread::process_event(Event *e, int calling_code) { ink_assert((!e->in_the_prot_queue && !e->in_the_priority_queue)); - MUTEX_TRY_LOCK_FOR(lock, e->mutex.m_ptr, this, e->continuation); + MUTEX_TRY_LOCK_FOR(lock, e->mutex, this, e->continuation); if (!lock.is_locked()) { e->timeout_at = cur_time + DELAY_FOR_RETRY; EventQueueExternal.enqueue_local(e); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
