]> git.stg.codes - stg.git/commitdiff
Исправлена тупая и уже успевшая запарить ошибка (опечатка) выражающаяся в создании...
authorMaxim Mamontov <faust@gts.dp.ua>
Tue, 7 Dec 2010 10:31:41 +0000 (12:31 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Tue, 7 Dec 2010 10:31:41 +0000 (12:31 +0200)
projects/stargazer/actions.inl.h
projects/stargazer/traffcounter.cpp

index c29a63cda1a3a5ea564326434d930b5d2981a331..37c7e86e71ef78c30d0e9b3be30121464c44537a 100644 (file)
@@ -26,7 +26,7 @@ ACTIONS_LIST::~ACTIONS_LIST()
 {
 
     {
-    STG_LOCKER(&mutex, __FILE__, __LINE__);
+    STG_LOCKER lock(&mutex, __FILE__, __LINE__);
 
     parent::iterator it(parent::begin());
     while (it != parent::end()) 
index e834b81fb9be562607d38d7a1d87698c24f72799..72c1295bbe1de231287eaed6d64734af6fa02c86 100644 (file)
@@ -409,7 +409,7 @@ printfd(__FILE__, "AddUser: %s\n", user->GetLogin().c_str());
 uint32_t uip = user->GetCurrIP();
 pair<ip2p_iter, ip2p_iter> pi;
 
-STG_LOCKER(&mutex, __FILE__, __LINE__);
+STG_LOCKER lock(&mutex, __FILE__, __LINE__);
 // Find all packets with IP belongs to this user
 pi = ip2packets.equal_range(uip);
 
@@ -446,7 +446,7 @@ void TRAFFCOUNTER::DelUser(uint32_t uip)
 printfd(__FILE__, "DelUser: %s \n", inet_ntostring(uip).c_str());
 pair<ip2p_iter, ip2p_iter> pi;
 
-STG_LOCKER(&mutex, __FILE__, __LINE__);
+STG_LOCKER lock(&mutex, __FILE__, __LINE__);
 pi = ip2packets.equal_range(uip);
 
 while (pi.first != pi.second)