summaryrefslogtreecommitdiff
path: root/ext/sysvshm/tests/shutdown_crash_0.phpt
blob: 0f2a02dfb5725addb551b573b395c66b7579fc2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Shutdown crash when attached/removed same key segment multiple times
--SKIPIF--
<?php
if (!extension_loaded("sysvshm")){ print 'skip'; }
?>
--FILE--
<?php

/*$key = ftok(__FILE__, 't');
var_dump($key);*/
$key = 42;

var_dump($s = shm_attach($key, 1024));
shm_remove($s);
var_dump($s = shm_attach($key, 1024));
shm_remove($s);
--EXPECTF--
resource(%d) of type (sysvshm)
resource(%d) of type (sysvshm)