From: Matteo Nastasi (mop) Date: Sun, 8 May 2011 13:24:45 +0000 (+0200) Subject: Lock-meter added in log file. X-Git-Tag: 3.5.4~2 X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=eba71b701d39f4da43f91ce93d5b518430b33661;p=brisk.git Lock-meter added in log file. --- diff --git a/web/Obj/hardban.phh b/web/Obj/hardban.phh index ffec9c6..05ca8e1 100644 --- a/web/Obj/hardban.phh +++ b/web/Obj/hardban.phh @@ -44,6 +44,8 @@ class Hardban { } class Hardbans { + static $delta_t; + var $item; var $item_n; var $mod; @@ -247,7 +249,8 @@ class Hardbans { return (FALSE); } if (sem_acquire($res)) { - log_lock("LOCK hardbans"); + self::$delta_t = microtime(TRUE); + log_lock("LOCK hardbans [".self::$delta_t."]"); return ($res); } else @@ -258,7 +261,7 @@ class Hardbans { { GLOBAL $sess; - log_lock("UNLOCK hardbans"); + log_lock("UNLOCK hardbans [".(microtime(TRUE) - (self::$delta_t))."]"); return (sem_release($res)); }