summaryrefslogtreecommitdiffstats
path: root/net/udp/udp_socket_win.cc
diff options
context:
space:
mode:
authorrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 23:07:19 +0000
committerrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 23:07:19 +0000
commit2862086530e94dab7ab55e842601661aabd8a408 (patch)
tree31fc3c9027af9d89c1fdfd671cfe1ea1968e0c8c /net/udp/udp_socket_win.cc
parent81cbbeba77b50e09cf52c7da09ed5ff88056cd28 (diff)
downloadchromium_src-2862086530e94dab7ab55e842601661aabd8a408.zip
chromium_src-2862086530e94dab7ab55e842601661aabd8a408.tar.gz
chromium_src-2862086530e94dab7ab55e842601661aabd8a408.tar.bz2
Removed the static on all stats macros and changed the static declaration
of StatsCounter, StatsCounterTimer and StatsRate variables to auto. This change would fix possibel race condition during static's initialization in multi-threaded environments. BUG=76980 TEST=unit tests in net, browser and plugins R=jar@chromium.org Review URL: http://codereview.chromium.org/6719011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79065 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/udp/udp_socket_win.cc')
-rw-r--r--net/udp/udp_socket_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/udp/udp_socket_win.cc b/net/udp/udp_socket_win.cc
index 328f379..2e2271e 100644
--- a/net/udp/udp_socket_win.cc
+++ b/net/udp/udp_socket_win.cc
@@ -263,7 +263,7 @@ void UDPSocketWin::DidCompleteRead() {
}
bool UDPSocketWin::ProcessSuccessfulRead(int num_bytes, IPEndPoint* address) {
- static base::StatsCounter read_bytes("udp.read_bytes");
+ base::StatsCounter read_bytes("udp.read_bytes");
read_bytes.Add(num_bytes);
// Convert address.
@@ -290,7 +290,7 @@ void UDPSocketWin::DidCompleteWrite() {
}
void UDPSocketWin::ProcessSuccessfulWrite(int num_bytes) {
- static base::StatsCounter write_bytes("udp.write_bytes");
+ base::StatsCounter write_bytes("udp.write_bytes");
write_bytes.Add(num_bytes);
}