stop-thread 0.1.2

Various ways of stopping threads on various platforms, without requiring the thread to poll.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[dependencies]

[package]
authors = ["Solomon Ucko <solly.ucko@gmail.com>"]
categories = ["api-bindings", "concurrency", "os::unix-apis", "os::windows-apis"]
description = "Various ways of stopping threads on various platforms, without requiring the thread to poll."
documentation = "https://docs.rs/stop-thread"
edition = "2018"
keywords = ["thread", "stop", "kill", "terminate", "cross-platform"]
license = "CC0-1.0"
name = "stop-thread"
version = "0.1.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["processthreadsapi"]
version = "0.3"