From eba71b701d39f4da43f91ce93d5b518430b33661 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 8 May 2011 15:24:45 +0200 Subject: [PATCH] Lock-meter added in log file. --- web/Obj/hardban.phh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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)); } -- 2.17.1