-
The ffi module – Create Your Own Event Queue-2
The last part of the code in this file is the Event struct: ch04/a-epoll/src/ffi.rs#[derive(Debug)]#[repr(C, packed)]pub struct Event { pub(crate) events: u32, // Token to identify event pub(crate) epoll_data: usize,}impl Event { pub fn token(&self) -> usize { self.epoll_data }} This structure is used to communicate to the operating system in epoll_ctl, and the operating system uses the same structure to communicate…

Recent post
Tags
Categories
- Cross-platform event queues
- Exams of IT
- IMPORTANT NOTE
- IT Certification Exams
- Raw syscall on macOS
- The main program
- Using Windows API
- WHAT DOES #[REPR(PACKED)] DO?
- September 2024
- August 2024
- July 2024
- June 2024
- May 2024
- April 2024
- March 2024
- February 2024
- January 2024
- December 2023
- November 2023
- October 2023
- September 2023
- July 2023
- June 2023
- May 2023
- April 2023
- February 2023
- December 2022
- November 2022
- October 2022
- September 2022
- August 2022
- June 2022
- May 2022
- March 2022
- January 2022
- December 2021
- November 2021
