Home
last modified time | relevance | path

Searched refs:lock_file (Results 1 – 4 of 4) sorted by relevance

/PHP-7.4/ext/standard/tests/file/
H A Dflock_basic.phpt13 $lock_file = preg_replace("~\.phpt?$~", null, __FILE__);
15 $file_handle = fopen($lock_file, "w");
21 unlink($lock_file);
/PHP-7.4/ext/opcache/
H A Dzend_shared_alloc.c55 int lock_file; variable
85 lock_file = mkstemp(lockfile_name); in zend_shared_alloc_create_lock()
86 fchmod(lock_file, 0666); in zend_shared_alloc_create_lock()
88 if (lock_file == -1) { in zend_shared_alloc_create_lock()
91 val = fcntl(lock_file, F_GETFD, 0); in zend_shared_alloc_create_lock()
93 fcntl(lock_file, F_SETFD, val); in zend_shared_alloc_create_lock()
287 close(lock_file); in zend_shared_alloc_shutdown()
464 if (fcntl(lock_file, F_SETLKW, &mem_write_lock) == -1) { in zend_shared_alloc_lock()
493 if (fcntl(lock_file, F_SETLK, &mem_write_unlock) == -1) { in zend_shared_alloc_unlock()
H A DZendAccelerator.h91 extern int lock_file;
H A DZendAccelerator.c258 if (fcntl(lock_file, F_SETLK, &restart_in_progress) == -1) { in accel_restart_enter()
279 if (fcntl(lock_file, F_SETLK, &restart_finished) == -1) { in accel_restart_leave()
296 if (fcntl(lock_file, F_GETLK, &restart_check) == -1) { in accel_restart_is_active()
328 if (fcntl(lock_file, F_SETLK, &mem_usage_lock) == -1) { in accel_activate_add()
354 if (fcntl(lock_file, F_SETLK, &mem_usage_unlock) == -1) { in accel_deactivate_sub()
372 if (fcntl(lock_file, F_SETLK, &mem_usage_unlock_all) == -1) { in accel_unlock_all()
819 if (fcntl(lock_file, F_GETLK, mem_usage_check) == -1) { in kill_all_lockers()
845 if (fcntl(lock_file, F_GETLK, &mem_usage_check) == -1) { in accel_is_inactive()

Completed in 29 milliseconds