[][src]Struct libpulse_binding::def::SpawnApi

#[repr(C)]
pub struct SpawnApi {
    pub prefork: Option<extern "C" fn()>,
    pub postfork: Option<extern "C" fn()>,
    pub atfork: Option<extern "C" fn()>,
}

A structure for the spawn API.

This may be used to integrate auto spawned daemons into your application. For more information see context::Context::connect. When spawning a new child process the waitpid() is used on the child’s PID. The spawn routine will not block or ignore SIGCHLD signals, since this cannot be done in a thread compatible way. You might have to do this in prefork/postfork.

Fields

prefork: Option<extern "C" fn()>

Is called just before the fork in the parent process.

postfork: Option<extern "C" fn()>

Is called immediately after the fork in the parent process.

atfork: Option<extern "C" fn()>

Is called immediately after the fork in the child process.

It is not safe to close all file descriptors in this function unconditionally, since a UNIX socket (created using socketpair()) is passed to the new process.

Trait Implementations

impl AsRef<pa_spawn_api> for SpawnApi[src]

impl Debug for SpawnApi[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]