1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:47:44 +00:00

E1000: Use a WaitQueue to sleep while waiting for a transmit IRQ

This commit is contained in:
Andreas Kling 2019-12-14 10:47:17 +01:00
parent bcffe31d3a
commit 39246fb621
2 changed files with 12 additions and 2 deletions

View file

@ -72,4 +72,6 @@ private:
e1000_rx_desc* m_rx_descriptors;
e1000_tx_desc* m_tx_descriptors;
WaitQueue m_wait_queue;
};