Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. while (file_exists('file.lock')) {
  2. usleep(100000); // sleep 100ms
  3. }
  4. touch('file.lock');
  5. // Execute processes here
  6. unlink('file.lock');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement