1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: create epoll wrapper (#10404)

This commit is contained in:
Miccah
2021-06-14 20:44:31 -05:00
committed by GitHub
parent f922fc2a59
commit e328b1d292
4 changed files with 397 additions and 0 deletions

View File

@ -0,0 +1,6 @@
module notify
// Implement the API
pub fn new() ?FdNotifier {
panic('unsupported')
}