mirror of
https://github.com/bspeice/qadapt
synced 2024-11-13 17:48:09 -05:00
First of edition fixing
This commit is contained in:
parent
5232c556ff
commit
de2b6700ae
@ -1,4 +1,4 @@
|
||||
extern crate qadapt;
|
||||
|
||||
|
||||
use qadapt::allocate_panic;
|
||||
use qadapt::QADAPT;
|
||||
|
@ -1,5 +1,5 @@
|
||||
extern crate env_logger;
|
||||
extern crate qadapt;
|
||||
use env_logger;
|
||||
|
||||
|
||||
use qadapt::allocate_panic;
|
||||
|
||||
|
@ -11,14 +11,14 @@
|
||||
//! Please also take a look at [qadapt-macro](https://github.com/bspeice/qadapt/tree/master/qadapt-macro)
|
||||
//! for some helper macros to make working with QADAPT a bit easier.
|
||||
#![deny(missing_docs)]
|
||||
extern crate libc;
|
||||
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
extern crate qadapt_macro;
|
||||
extern crate spin;
|
||||
|
||||
|
||||
// thread_id is necessary because `std::thread::current()` panics if we have not yet
|
||||
// allocated a `thread_local!{}` it depends on.
|
||||
extern crate thread_id;
|
||||
use thread_id;
|
||||
|
||||
// Re-export the proc macros to use by other code
|
||||
pub use qadapt_macro::*;
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate qadapt;
|
||||
|
||||
|
||||
use qadapt::enter_protected;
|
||||
use qadapt::exit_protected;
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern crate qadapt;
|
||||
|
||||
use std::io;
|
||||
|
||||
use qadapt::allocate_panic;
|
||||
|
Loading…
Reference in New Issue
Block a user