##// END OF EJS Templates
rust-chg: add low-level function to set pager fd blocking...
rust-chg: add low-level function to set pager fd blocking This is necessary because the server expects stdout/stderr to be blocking, whereas we'll use async library to spawn pager, which makes pipes unblocking.

File last commit:

r40008:7a0ffdd4 default
r40009:ba447b83 default
Show More
lib.rs
15 lines | 364 B | application/rls-services+xml | RustLexer
// Copyright 2018 Yuya Nishihara <yuya@tcha.org>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
extern crate bytes;
#[macro_use]
extern crate futures;
extern crate libc;
extern crate tokio;
extern crate tokio_hglib;
pub mod attachio;
pub mod message;
pub mod procutil;