]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/sgx/pipe.rs
Add x86_64-fortanix-unknown-sgx target to libstd and dependencies
[rust.git] / src / libstd / sys / sgx / pipe.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use io;
12 use sys::Void;
13
14 pub struct AnonPipe(Void);
15
16 impl AnonPipe {
17     pub fn read(&self, _buf: &mut [u8]) -> io::Result<usize> {
18         match self.0 {}
19     }
20
21     pub fn write(&self, _buf: &[u8]) -> io::Result<usize> {
22         match self.0 {}
23     }
24
25     pub fn diverge(&self) -> ! {
26         match self.0 {}
27     }
28 }
29
30 pub fn read2(p1: AnonPipe,
31              _v1: &mut Vec<u8>,
32              _p2: AnonPipe,
33              _v2: &mut Vec<u8>) -> io::Result<()> {
34     match p1.0 {}
35 }