Home
last modified time | relevance | path

Searched refs:KEYBUF (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/driver/tty/
H A Dkthread.rs18 static KEYBUF: StaticThingBuf<u8, 512> = StaticThingBuf::new(); constant
36 if KEYBUF.is_empty() { in tty_refresh_thread()
43 let to_dequeue = core::cmp::min(KEYBUF.len(), TO_DEQUEUE_MAX); in tty_refresh_thread()
49 *item = KEYBUF.pop().unwrap(); in tty_refresh_thread()
70 KEYBUF.push(*item).ok(); in send_to_tty_refresh_thread()