mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
113 lines
2.8 KiB
PHP
113 lines
2.8 KiB
PHP
--TEST--
|
|
General semaphore and shared memory test
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded('sysvsem') || !extension_loaded('sysvshm')) {
|
|
die("skip Both sysvsem and sysvshm required");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$MEMSIZE = 512; // size of shared memory to allocate
|
|
$SEMKEY = ftok(__FILE__, 'P'); // Semaphore key
|
|
$SHMKEY = ftok(__FILE__, 'Q'); // Shared memory key
|
|
|
|
echo "Start.\n";
|
|
// Get semaphore
|
|
$sem_id = sem_get($SEMKEY, 1);
|
|
if ($sem_id === FALSE) {
|
|
echo "Fail to get semaphore";
|
|
exit;
|
|
}
|
|
echo "Got semaphore $sem_id.\n";
|
|
|
|
// Accuire semaphore
|
|
if (! sem_acquire($sem_id)) {
|
|
echo "Fail to acquire semaphore $sem_id.\n";
|
|
sem_remove($sem_id);
|
|
exit;
|
|
}
|
|
echo "Success acquire semaphore $sem_id.\n";
|
|
|
|
$shm_id = shm_attach($SHMKEY, $MEMSIZE);
|
|
if ($shm_id === FALSE) {
|
|
echo "Fail to attach shared memory.\n";
|
|
sem_remove($sem_id);
|
|
exit;
|
|
}
|
|
echo "Success to attach shared memory : $shm_id.\n";
|
|
|
|
// Write variable 1
|
|
if (!shm_put_var($shm_id, 1, "Variable 1")) {
|
|
echo "Fail to put var 1 on shared memory $shm_id.\n";
|
|
sem_remove($sem_id);
|
|
shm_remove ($shm_id);
|
|
exit;
|
|
}
|
|
echo "Write var1 to shared memory.\n";
|
|
|
|
// Write variable 2
|
|
if (!shm_put_var($shm_id, 2, "Variable 2")) {
|
|
echo "Fail to put var 2 on shared memory $shm_id.\n";
|
|
sem_remove($sem_id);
|
|
shm_remove ($shm_id);
|
|
exit;
|
|
}
|
|
echo "Write var2 to shared memory.\n";
|
|
|
|
// Read variable 1
|
|
$var1 = shm_get_var ($shm_id, 1);
|
|
if ($var1 === FALSE) {
|
|
echo "Fail to retrieve Var 1 from Shared memory $shm_id, return value=$var1.\n";
|
|
} else {
|
|
echo "Read var1=$var1.\n";
|
|
}
|
|
|
|
// Read variable 1
|
|
$var2 = shm_get_var ($shm_id, 2);
|
|
if ($var1 === FALSE) {
|
|
echo "Fail to retrieve Var 2 from Shared memory $shm_id, return value=$var2.\n";
|
|
} else {
|
|
echo "Read var2=$var2.\n";
|
|
}
|
|
// Release semaphore
|
|
if (!sem_release($sem_id)) {
|
|
echo "Fail to release $sem_id semaphore.\n";
|
|
} else {
|
|
echo "Semaphore $sem_id released.\n";
|
|
}
|
|
|
|
// remove shared memory segmant from SysV
|
|
if (shm_remove ($shm_id)) {
|
|
echo "Shared memory successfully removed from SysV.\n";
|
|
} else {
|
|
echo "Fail to remove $shm_id shared memory from SysV.\n";
|
|
}
|
|
|
|
// Remove semaphore
|
|
if (sem_remove($sem_id)) {
|
|
echo "semaphore removed successfully from SysV.\n";
|
|
} else {
|
|
echo "Fail to remove $sem_id semaphore from SysV.\n";
|
|
}
|
|
echo "End.\n";
|
|
/* NOTE: assigned semids differ depending on the kernel, since
|
|
* there are actually 3 semaphores per PHP-created
|
|
* semaphores in effect, to keep state information.
|
|
* That's the reason for EXPECTF.
|
|
*/
|
|
?>
|
|
--EXPECTF--
|
|
Start.
|
|
Got semaphore Resource id #%i.
|
|
Success acquire semaphore Resource id #%i.
|
|
Success to attach shared memory : %s.
|
|
Write var1 to shared memory.
|
|
Write var2 to shared memory.
|
|
Read var1=Variable 1.
|
|
Read var2=Variable 2.
|
|
Semaphore Resource id #%s released.
|
|
Shared memory successfully removed from SysV.
|
|
semaphore removed successfully from SysV.
|
|
End.
|