gelf 0.5.0

A library for logging GELF messages to a Graylog compatible server
Documentation
use libc;

/// Return the process-id (pid) of the current process
pub fn pid() -> i32 {
    unsafe { libc::getpid() }
}