From 9e592ee450eeef535b7acf284f157edc9ed4af62 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 9 Nov 2021 23:27:10 +0100 Subject: use lazy_static instead of raw global This crate would have been handy back in the days. --- src/vtcol.rs | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'src/vtcol.rs') diff --git a/src/vtcol.rs b/src/vtcol.rs index a82e5bb..993653b 100644 --- a/src/vtcol.rs +++ b/src/vtcol.rs @@ -1,15 +1,16 @@ -extern crate libc; -extern crate getopts; -extern crate core; +use std::sync::Mutex; +use lazy_static::lazy_static; type Fd = libc::c_int; -static mut VERBOSITY : u8 = 0_u8; +lazy_static! { + static ref VERBOSITY: Mutex = false; +} macro_rules! vrb { - ( $( $e:expr ),* ) => ( - if unsafe { VERBOSITY } > 0_u8 { println!( $( $e ),* ) } - ) + ( $( $e:expr ),* ) => {( + if VERBOSITY.lock().unwrap() { println!( $( $e ),* ) } + )} } const PALETTE_SIZE : usize = 16_usize; @@ -159,7 +160,9 @@ impl<'a> Job { unsafe { exit(0) }; }; - if matches.opt_present("v") { unsafe { VERBOSITY = 1_u8; } }; + if matches.opt_present("v") { + VERBOSITY.lock().unwrap() = true; + } if matches.opt_present("l") { Job::schemes(); -- cgit v1.2.3