mirror of
				https://github.com/bspeice/qadapt
				synced 2025-10-31 09:30:37 -04:00 
			
		
		
		
	Update the docs
This commit is contained in:
		| @ -1,12 +1,8 @@ | ||||
| //! Helper macros to use with the QADAPT allocator system | ||||
| //!  | ||||
| //! This crate is unusable on its own, but because `proc_macro` crates | ||||
| //! can't export non-proc-macro symbols, we have to go through an extra step | ||||
| //! to move these up. | ||||
| //! This crate is intended for managing the QADAPT allocator, | ||||
| //! and is unusable on its own. | ||||
| //!  | ||||
| //! Ultimately, this does actually work because we don't need to actually use | ||||
| //! references to the underlying functionality here, we just need to know | ||||
| //! where they will ultimately end up at. | ||||
| // TODO: This causes issues, but I can't track down why | ||||
| // #![deny(missing_docs)] | ||||
| extern crate proc_macro; | ||||
| @ -15,8 +11,11 @@ use proc_macro::TokenTree; | ||||
| use proc_macro::TokenStream; | ||||
|  | ||||
| /// Set up the QADAPT allocator to trigger a panic if any allocations happen during | ||||
| /// this function. Race conditions between threads are not checked, this macro will | ||||
| /// only work as intended in a single-threaded or otherwise synchronized environment. | ||||
| /// calls to this function. | ||||
| ///  | ||||
| /// QADAPT will only track allocations in the thread that calls this function; | ||||
| /// if (for example) this function receives the results of an allocation in a | ||||
| /// separate thread, QADAPT will not trigger a panic. | ||||
| #[proc_macro_attribute] | ||||
| pub fn allocate_panic(_attr: TokenStream, item: TokenStream) -> TokenStream { | ||||
|     let ret = item.clone(); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user