Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/tests/file/
H A Dflock_basic.phpt12 $lock_file = preg_replace("~\.phpt?$~", null, __FILE__);
14 $file_handle = fopen($lock_file, "w");
20 unlink($lock_file);
/PHP-8.0/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()
304 close(lock_file); in zend_shared_alloc_shutdown()
481 if (fcntl(lock_file, F_SETLKW, &mem_write_lock) == -1) { in zend_shared_alloc_lock()
510 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.c249 if (fcntl(lock_file, F_SETLK, &restart_in_progress) == -1) { in accel_restart_enter()
270 if (fcntl(lock_file, F_SETLK, &restart_finished) == -1) { in accel_restart_leave()
287 if (fcntl(lock_file, F_GETLK, &restart_check) == -1) { in accel_restart_is_active()
319 if (fcntl(lock_file, F_SETLK, &mem_usage_lock) == -1) { in accel_activate_add()
345 if (fcntl(lock_file, F_SETLK, &mem_usage_unlock) == -1) { in accel_deactivate_sub()
363 if (fcntl(lock_file, F_SETLK, &mem_usage_unlock_all) == -1) { in accel_unlock_all()
816 if (fcntl(lock_file, F_GETLK, mem_usage_check) == -1) { in kill_all_lockers()
842 if (fcntl(lock_file, F_GETLK, &mem_usage_check) == -1) { in accel_is_inactive()

Completed in 24 milliseconds