kernelsauce / turbo

Turbo is a framework built for LuaJIT 2 to simplify the task of building fast and scalable network applications. It uses a event-driven, non-blocking, no thread design to deliver excellent performance and minimal footprint to high-load applications while also providing excellent support for embedded uses.
http://turbo.readthedocs.io/
Apache License 2.0
527 stars 84 forks source link

sigval and sigevent redeclared #303

Open tradie opened 7 years ago

tradie commented 7 years ago

union sigval and struct sigevent seem to be declared in syscall (ljsyscall 0.12-1) so I get an error when I'm trying to load turbo. Moving them inside the if not S block above solved it for me.

kernelsauce commented 7 years ago

Ok. Will look at moving these inside. Thanks for reporting,