ali-eltaweel/signals

There is no license information available for the latest version (1.0.0) of this package.

Posix Signals

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/ali-eltaweel/signals

1.0.0 2025-08-14 13:37 UTC

This package is auto-updated.

Last update: 2025-10-14 14:00:36 UTC


README

Posix Signals

Installation

composer require ali-eltaweel/signals

Usage

declare(ticks=1);

use Signals\Signal;

Signal::SIGILL->handle(function(Signal $signal, array $siginfo) {
    
    // ...
});

Signal::SIGILL->kill(getmypid());