Skip to content
This repository was archived by the owner on Jul 6, 2019. It is now read-only.

Fixes for rust nightly changes #337

Merged
merged 5 commits into from
Aug 17, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/blink_k20/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

use core::option::Option::Some;
Expand Down
1 change: 0 additions & 1 deletion examples/blink_k20_isr/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![feature(no_std, core, start, core_intrinsics)]
#![no_std]

extern crate core;
extern crate zinc;

use core::intrinsics::volatile_load;
Expand Down
1 change: 0 additions & 1 deletion examples/blink_lpc17xx/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

use core::option::Option::Some;
Expand Down
1 change: 0 additions & 1 deletion examples/blink_pt/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;

platformtree!(
Expand Down
1 change: 0 additions & 1 deletion examples/blink_stm32f4/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

use zinc::hal::timer::Timer;
Expand Down
1 change: 0 additions & 1 deletion examples/blink_stm32l1/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

#[zinc_main]
Expand Down
1 change: 0 additions & 1 deletion examples/blink_tiva_c/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;

platformtree!(
Expand Down
1 change: 0 additions & 1 deletion examples/bluenrg_stm32l1/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
//! Sample application for BlueNRG communication over SPI in X-NUCLEO-IDB04A1
//! extension board for NUCLEO-L152RE

#[macro_use] extern crate core;
extern crate zinc;

use core::intrinsics::abort;
Expand Down
1 change: 0 additions & 1 deletion examples/dht22/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;
#[macro_use] #[no_link] extern crate macro_platformtree;

Expand Down
1 change: 0 additions & 1 deletion examples/empty/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

use zinc::hal::mem_init::{init_data, init_stack};
Expand Down
1 change: 0 additions & 1 deletion examples/lcd_tiva_c/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;
#[macro_use] #[no_link] extern crate macro_platformtree;

Expand Down
1 change: 0 additions & 1 deletion examples/uart/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;
#[macro_use] #[no_link] extern crate macro_platformtree;

Expand Down
1 change: 0 additions & 1 deletion examples/uart_tiva_c/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![no_std]
#![plugin(macro_platformtree)]

extern crate core;
extern crate zinc;
#[macro_use] #[no_link] extern crate macro_platformtree;

Expand Down
1 change: 0 additions & 1 deletion examples/usart_stm32l1/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![no_std]
#![plugin(macro_zinc)]

extern crate core;
extern crate zinc;

#[zinc_main]
Expand Down
2 changes: 1 addition & 1 deletion ioreg/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#![feature(core, plugin)]
#![plugin(ioreg)]

extern crate core;
extern crate volatile_cell;
extern crate core;

#[cfg(test)]
mod test {
Expand Down
6 changes: 4 additions & 2 deletions platformtree/src/builder/meta_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use syntax::ext::base::ExtCtxt;
use syntax::ext::build::AstBuilder;
use syntax::parse::token::{InternedString, intern_and_get_ident};
use syntax::ptr::P;
use std::hash::{hash, SipHasher};
use std::hash::{Hash, Hasher, SipHasher};

static TAG: &'static str = "__zinc_task_ty_params";

Expand All @@ -29,7 +29,9 @@ pub trait ToTyHash {

impl ToTyHash for String {
fn to_tyhash(&self) -> String {
let h: u64 = hash::<_, SipHasher>(&self);
let mut s = SipHasher::new();
self.hash(&mut s);
let h: u64 = s.finish();
format!("Ty{:X}", h)
}
}
Expand Down
2 changes: 1 addition & 1 deletion platformtree/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

//! Platform tree operations crate

#![feature(quote, rustc_private, hash_default, convert, rc_weak)]
#![feature(quote, rustc_private, convert, rc_weak)]

// extern crate regex;
extern crate syntax;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#![feature(asm, lang_items, plugin, range_inclusive)]
#![feature(core, core_intrinsics, core_prelude, core_slice_ext, core_str_ext)]
#![allow(improper_ctypes)]
#![feature(const_fn)]
#![deny(missing_docs)]
#![no_std]

Expand Down Expand Up @@ -48,7 +49,6 @@ STM32F403/407).
#![plugin(ioreg)]
#![feature(no_std)]

#[macro_use] extern crate core;
#[cfg(target_os = "none")]
extern crate rlibc;

Expand Down
7 changes: 1 addition & 6 deletions src/os/cond_var.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ pub use os::cond_var::internal::{CondVar, COND_VAR_INIT};
mod internal {
use core::option::{None, Some};
use core::ty::Unsafe;
use core::marker;
use core::marker::Sync;

use hal::cortex_m3::sched::NoInterrupts;
Expand Down Expand Up @@ -92,7 +91,6 @@ mod internal {

#[cfg(not(multitasking))]
mod internal {
use core::marker;
use core::marker::Sync;
use core::cell::UnsafeCell;

Expand All @@ -101,21 +99,18 @@ mod internal {
/// A condition variable
pub struct CondVar {
waiting: UnsafeCell<bool>,
nocopy: marker::NoCopy
}

/// Static initializer
pub const COND_VAR_INIT: CondVar = CondVar {
waiting: UnsafeCell { value: false },
nocopy: marker::NoCopy,
waiting: UnsafeCell::new(false),
};

impl CondVar {
/// Create a new condition variable
pub fn new() -> CondVar {
CondVar {
waiting: UnsafeCell::new(false),
nocopy: marker::NoCopy,
}
}

Expand Down
8 changes: 4 additions & 4 deletions src/os/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ mod internal {

/// Static initializer
pub const MUTEX_INIT: Mutex = Mutex {
owner: UnsafeCell {value: None},
owner: UnsafeCell::new(None),
waiting: Queue {
head: UnsafeCell {value: 0 as *mut Node<*mut TaskDescriptor>,},
tail: UnsafeCell {value: 0 as *mut Node<*mut TaskDescriptor>,},
head: UnsafeCell::new(0 as *mut Node<*mut TaskDescriptor>),
tail: UnsafeCell::new(0 as *mut Node<*mut TaskDescriptor>),
}
};

Expand Down Expand Up @@ -153,7 +153,7 @@ mod internal {
}

/// Static initializer
pub const MUTEX_INIT: Mutex = Mutex { taken: UnsafeCell { value: false } };
pub const MUTEX_INIT: Mutex = Mutex { taken: UnsafeCell::new(false) };

/// A mutex lock
#[must_use]
Expand Down
1 change: 0 additions & 1 deletion src/util/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#![crate_type="staticlib"]
#![no_std]

extern crate core;
extern crate zinc;
extern crate app;

Expand Down
3 changes: 1 addition & 2 deletions volatile_cell/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@

//! A cell that with volatile setter and getter.

#![feature(core, no_std, core_intrinsics)]
#![feature(no_std, core_intrinsics)]
#![no_std]

extern crate core;

#[cfg(feature="replayer")] #[macro_use(expect)] extern crate expectest;
#[cfg(feature="replayer")] #[macro_use] extern crate std;
Expand Down