Function glib::source::child_watch_source_new
source · pub fn child_watch_source_new<F>(
pid: Pid,
name: Option<&str>,
priority: Priority,
func: F
) -> Sourcewhere
F: FnMut(Pid, i32) + Send + 'static,
Expand description
Adds a closure to be called by the main loop the returned Source
is attached to when a child
process exits.
func
will be called when pid
exits