Go to file
Sönke Ludwig 7ebad49ed0 Rework the child process exit code to not rely in SIGCHLD.
It turns out that in a heterogeneous process where other parts of the code may start processes or threads and may be waiting for those to finish, it is not realistic to rely on signalfd or even SIGCHLD in general to get notified about child process exits. The only solid way appears to be to start a separate waiter thread that uses waitid/waitpid to wait for exited child processes in a blocking way.

This also fixes the hanging vibe.core.process test in vibe-core with DMD 2.087.x.
2019-08-23 09:35:12 +02:00
examples Fix compile error in http server example. 2017-01-23 11:03:36 +01:00
lib Implement WinAPI based TCP socket support. 2017-06-24 22:31:16 +02:00
source/eventcore Rework the child process exit code to not rely in SIGCHLD. 2019-08-23 09:35:12 +02:00
tests Use a more robust way to self-execute the test binary. 2019-08-23 09:35:12 +02:00
.editorconfig Add .editorconfig. 2017-01-16 21:40:14 +01:00
.gitignore Update .gitignore. 2017-03-24 09:06:28 +01:00
.travis.yml Test up to DMD 2.087.1/LDC 1.16.0. 2019-08-22 23:40:01 +02:00
appveyor.yml Test up to DMD 2.087.1/LDC 1.16.0. 2019-08-22 23:40:01 +02:00
dub.sdl Allow taggedalgebraic 0.11.x. 2019-02-22 21:28:19 +01:00
LICENSE.txt Add LICENSE files and fix package license field. 2018-10-02 11:09:26 +02:00
LICENSE_DE.txt Add LICENSE files and fix package license field. 2018-10-02 11:09:26 +02:00
README.md Test up to DMD 2.087.1/LDC 1.16.0. 2019-08-22 23:40:01 +02:00
travis-ci.sh Run tests with the actually selected configurations and fix the tested OS/config combinations. 2017-01-22 21:41:09 +01:00

EventCore

This is a high-performance native event loop abstraction for D, focused on asynchronous I/O and GUI message integration. The API is callback (delegate) based. For a higher level fiber based abstraction, take a look at vibe.d.

DUB Package Posix Build Status Windows Build Status

Supported drivers and operating systems

Driver Linux Windows macOS FreeBSD Android iOS
SelectEventDriver yes yes yes yes¹
EpollEventDriver yes
WinAPIEventDriver yes
KqueueEventDriver yes yes¹
LibasyncEventDriver —¹ —¹ —¹ —¹

¹ planned, but not currenly implemented

Supported compilers

The following compilers are tested and supported:

  • DMD 2.087.1
  • DMD 2.086.1
  • DMD 2.085.1
  • DMD 2.084.1
  • DMD 2.076.1
  • LDC 1.16.0
  • LDC 1.15.0
  • LDC 1.14.0
  • LDC 1.13.0
  • LDC 1.6.0

Driver development status

Feature \ EventDriver Select Epoll WinAPI Kqueue Libasync
TCP Sockets yes yes yes yes
UDP Sockets yes yes yes yes
USDS yes yes yes
DNS yes yes yes yes
Timers yes yes yes yes
Events yes yes yes yes
Unix Signals yes² yes
Files yes yes yes yes
UI Integration yes¹ yes¹ yes yes¹
File watcher yes² yes yes yes²
Pipes yes yes yes
Processes yes yes yes

¹ Manually, by adopting the X11 display connection socket

² Systems other than Linux use a polling implementation

Open questions

  • Error code reporting
  • Enqueued writes
  • Use the type system to prohibit passing thread-local handles to foreign threads