tools/timer: add module documentation

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-02-14 10:13:42 +01:00
parent c7f481b642
commit dd1bfe6c12

View File

@ -1,3 +1,8 @@
//! POSIX per-process timer interface.
//!
//! This module provides a wrapper around POSIX timers (see `timer_create(2)`) and utilities to
//! setup thread-targeted signaling and signal masks.
use std::{io, mem};
use std::time::Duration;