Skip to content

uv_rwlock_try* and uv_mutex_try* problem. #6

Open
@chobie

Description

@chobie

uv_rwlock_try* and uv_mutex_try throws SIGABRT.

<?php
$lock = uv_mutex_init();

uv_mutex_lock($lock);
if (uv_mutex_trylock($lock)) {  // throws SIGABRT
    echo "OK" . PHP_EOL;
} else {
    echo "FAILED" . PHP_EOL;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions