remove feature attributes for stable stuff

master
edef 2016-03-16 00:14:09 +01:00
parent bc46941e89
commit bb2b92bf6b
3 changed files with 1 additions and 4 deletions

View File

@ -7,7 +7,6 @@ use super::common::{push, rust_trampoline};
pub const STACK_ALIGN: usize = 16;
#[allow(raw_pointer_derive)]
#[derive(Debug)]
pub struct Registers {
rsp: *mut usize

View File

@ -1,8 +1,7 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(no_std)]
#![feature(asm, core)]
#![feature(asm)]
#![no_std]
//! libfringe is a low-level green threading library.

View File

@ -11,7 +11,6 @@ mod sys;
/// anonymous memory mapping facility, usually `mmap`.
/// The stack it provides comes with a guard page, which is not included
/// in the stack limit.
#[allow(raw_pointer_derive)]
#[derive(Debug)]
pub struct Stack {
ptr: *mut u8,