X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fauth.phh;h=36b75cab1f1f5343ed9b3b5b20978787a62a7d89;hb=d9d7c36af2f5ec4c0688e77e58d3d0b930cd2658;hp=11c74253a4ffcda2777e5c4e2126ffd51e14c97d;hpb=e47ddcae6cc33ed9d2471a54936db7d8efd5d46a;p=brisk.git diff --git a/web/Obj/auth.phh b/web/Obj/auth.phh index 11c7425..36b75ca 100644 --- a/web/Obj/auth.phh +++ b/web/Obj/auth.phh @@ -191,6 +191,7 @@ class Challenges { log_only("PUT_VAR FALLITA ".strlen(serialize($chals))); log_only(serialize($chals)); } + log_shme("Challenges::save_data2"); } $chals->shm_sz = $shm_sz; @@ -222,7 +223,8 @@ class Challenges { log_only("challenges count ".count($chals->item)." _n: ".$chals->item_n); $chals->mod = FALSE; - if (shm_put_var($shm, $tok, $chals) != FALSE) { + if (@shm_put_var($shm, $tok, $chals) != FALSE) { + log_shme("Challenges::save_data"); shm_detach($shm); return (TRUE); } @@ -242,13 +244,13 @@ class Challenges { return (FALSE); } - function lock_data() + static function lock_data($is_exclusive) { if (($tok = @ftok(FTOK_PATH."/challenges", "B")) == -1) { return (FALSE); } // echo "FTOK ".$tok."
"; - if (($res = sem_get($tok)) == FALSE) { + if (($res = sem_get($tok, ($is_exclusive ? 1 : LOCK_SHARE_MAX) )) == FALSE) { return (FALSE); } if (sem_acquire($res)) { @@ -260,7 +262,7 @@ class Challenges { return (FALSE); } - function unlock_data($res) + static function unlock_data($res) { GLOBAL $sess;