Author: zwoop
Date: Sat Jan 7 00:53:45 2012
New Revision: 1228526
URL: http://svn.apache.org/viewvc?rev=1228526&view=rev
Log:
TS-1074 PluginVC should schedule to the local queue instead of the
external queue. Author: Brian Geffon
Modified:
trafficserver/traffic/trunk/CHANGES
trafficserver/traffic/trunk/proxy/PluginVC.cc
Modified: trafficserver/traffic/trunk/CHANGES
URL:
http://svn.apache.org/viewvc/trafficserver/traffic/trunk/CHANGES?rev=1228526&r1=1228525&r2=1228526&view=diff
==============================================================================
--- trafficserver/traffic/trunk/CHANGES (original)
+++ trafficserver/traffic/trunk/CHANGES Sat Jan 7 00:53:45 2012
@@ -1,5 +1,8 @@
-*- coding: utf-8 -*-
Changes with Apache Traffic Server 3.1.2
+ *) [TS-1074] PluginVC should schedule to the local queue instead of the
+ external queue. Author: Brian Geffon
+
*) [TS-1032] Assertion when upstream connection is established (with event
handled by thread A) and immediately disconnected (handled by thread B).
Author: Uri Shachar.
Modified: trafficserver/traffic/trunk/proxy/PluginVC.cc
URL:
http://svn.apache.org/viewvc/trafficserver/traffic/trunk/proxy/PluginVC.cc?rev=1228526&r1=1228525&r2=1228526&view=diff
==============================================================================
--- trafficserver/traffic/trunk/proxy/PluginVC.cc (original)
+++ trafficserver/traffic/trunk/proxy/PluginVC.cc Sat Jan 7 00:53:45 2012
@@ -789,7 +789,7 @@ PluginVC::setup_event_cb(ink_hrtime in,
// to call us back
if (in == 0) {
if(this_ethread()->tt == REGULAR) {
- *e_ptr = this_ethread()->schedule_imm(this);
+ *e_ptr = this_ethread()->schedule_imm_local(this);
}
else
{
@@ -799,7 +799,7 @@ PluginVC::setup_event_cb(ink_hrtime in,
else
{
if(this_ethread()->tt == REGULAR) {
- *e_ptr = this_ethread()->schedule_in(this,in);
+ *e_ptr = this_ethread()->schedule_in_local(this,in);
}
else
{