X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2FObj%2Fhardban.phh;h=05ca8e11a521feed47583374d8cf7bb0e966eafb;hb=eba71b701d39f4da43f91ce93d5b518430b33661;hp=ffec9c631ee356d085285d3bc8c929333e075e1d;hpb=fc6f483745f4e6b25b1dc29bbb31f5639849287b;p=brisk.git 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)); }