Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function mymodule_long_operation() {
  2. if (lock_acquire('mymodule_long_operation')) {
  3. // Do the long operation here.
  4. // ...
  5. lock_release('mymodule_long_operation');
  6. }
  7. }
  8.  
  9. function mymodule_long_operation() {
  10. if (lock_acquire('mymodule_long_operation')) {
  11. // SOMETHING GOES WRONG HERE!
  12. lock_release('mymodule_long_operation');
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement