mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
Added EventLoopGroup API to native extension (#15)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
--TEST--
|
||||
aws_crt_event_loop_group
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once(dirname(__FILE__) . '/skipif.inc');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__) . '/common.inc');
|
||||
|
||||
$elg = aws_crt_event_loop_group_new(1);
|
||||
var_dump($elg);
|
||||
aws_crt_event_loop_group_release($elg);
|
||||
?>
|
||||
--EXPECTREGEX--
|
||||
int\(\d+\)
|
||||
Reference in New Issue
Block a user