Improve table formatting

This commit is contained in:
Sönke Ludwig 2017-01-22 09:46:31 +01:00 committed by GitHub
parent 28040004cf
commit 65e9693265

View file

@ -9,12 +9,12 @@ This is a high-performance native event loop abstraction for D, focused on async
Supported drivers and operating systems
---------------------------------------
Driver | Linux | Windows | OS X | FreeBSD
------------------|-------|---------|------|--------
SelectEventDriver | yes | yes | yes¹ | yes¹
EpollEventDriver | yes | no | no | no
WinAPIEventDriver | no | yes | no | no
KqueueEventDriver | no | no | yes¹ | yes¹
Driver | Linux | Windows | macOS | FreeBSD
------------------|---------|---------|---------|--------
SelectEventDriver | yes | yes | yes¹ | yes¹
EpollEventDriver | yes | — | — | —
WinAPIEventDriver | — | yes | — | —
KqueueEventDriver | — | — | yes¹ | yes¹
¹ planned, but not currenly implemented
@ -24,16 +24,16 @@ Driver development status
Feature | SelectEventDriver | EpollEventDriver | WinAPIEventDriver | KqueueEventDriver
-----------------|-------------------|------------------|-------------------|------------------
TCP Sockets | yes | yes | no | no
UDP Sockets | yes | yes | no | no
USDS | yes | yes | no | no
DNS | yes | yes | no | no
Timers | yes | yes | yes | no
Events | yes | yes | yes | no
Unix Signals | yes² | yes² | no | no
Files | yes | yes | yes | no
UI Integration | no | no | yes | no
File watcher | yes² | yes² | yes | no
TCP Sockets | yes | yes | — | —
UDP Sockets | yes | yes | — | —
USDS | yes | yes | — | —
DNS | yes | yes | — | —
Timers | yes | yes | yes | —
Events | yes | yes | yes | —
Unix Signals | yes² | yes² | — | —
Files | yes | yes | yes | —
UI Integration | — | — | yes | —
File watcher | yes² | yes² | yes | —
² Currently only supported on Linux