]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/sgx/args.rs
Add x86_64-fortanix-unknown-sgx target to libstd and dependencies
[rust.git] / src / libstd / sys / sgx / args.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 ffi::OsString;
12 use fortanix_sgx_abi::ByteBuffer;
13
14 pub unsafe fn init(argc: isize, argv: *const *const u8) {
15     // See ABI
16     let _len: usize = argc as _;
17     let _args: *const ByteBuffer = argv as _;
18
19     // TODO
20 }
21
22 pub unsafe fn cleanup() {
23 }
24
25 pub fn args() -> Args {
26     Args
27 }
28
29 pub struct Args;
30
31 impl Args {
32     pub fn inner_debug(&self) -> &[OsString] {
33         &[]
34     }
35 }
36
37 impl Iterator for Args {
38     type Item = OsString;
39     fn next(&mut self) -> Option<OsString> {
40         None
41     }
42     fn size_hint(&self) -> (usize, Option<usize>) {
43         (0, Some(0))
44     }
45 }
46
47 impl ExactSizeIterator for Args {
48     fn len(&self) -> usize {
49         0
50     }
51 }
52
53 impl DoubleEndedIterator for Args {
54     fn next_back(&mut self) -> Option<OsString> {
55         None
56     }
57 }