mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-27 12:34:44 +01:00
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
|
--TEST--
|
||
|
Check for uv_async
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$loop = uv_default_loop();
|
||
|
$async = uv_async_init($loop, function($async, $status){
|
||
|
echo "Hello";
|
||
|
uv_close($async);
|
||
|
});
|
||
|
|
||
|
uv_async_send($async);
|
||
|
|
||
|
uv_run();
|
||
|
--EXPECT--
|
||
|
Hello
|