mirror of
https://github.com/bspeice/qadapt
synced 2024-12-22 12:38:08 -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::allocate_panic;
|
||||||
use qadapt::QADAPT;
|
use qadapt::QADAPT;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
extern crate env_logger;
|
use env_logger;
|
||||||
extern crate qadapt;
|
|
||||||
|
|
||||||
use qadapt::allocate_panic;
|
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)
|
//! 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.
|
//! for some helper macros to make working with QADAPT a bit easier.
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
extern crate libc;
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate log;
|
extern crate log;
|
||||||
extern crate qadapt_macro;
|
|
||||||
extern crate spin;
|
|
||||||
// thread_id is necessary because `std::thread::current()` panics if we have not yet
|
// thread_id is necessary because `std::thread::current()` panics if we have not yet
|
||||||
// allocated a `thread_local!{}` it depends on.
|
// allocated a `thread_local!{}` it depends on.
|
||||||
extern crate thread_id;
|
use thread_id;
|
||||||
|
|
||||||
// Re-export the proc macros to use by other code
|
// Re-export the proc macros to use by other code
|
||||||
pub use qadapt_macro::*;
|
pub use qadapt_macro::*;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
extern crate qadapt;
|
|
||||||
|
|
||||||
use qadapt::enter_protected;
|
use qadapt::enter_protected;
|
||||||
use qadapt::exit_protected;
|
use qadapt::exit_protected;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
extern crate qadapt;
|
|
||||||
use std::io;
|
use std::io;
|
||||||
|
|
||||||
use qadapt::allocate_panic;
|
use qadapt::allocate_panic;
|
||||||
|
Loading…
Reference in New Issue
Block a user