lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Sean Conner wrote:
	http://www.conman.org/software/misc/luadaemon.tar.gz
	http://www.conman.org/software/cgilib/cgilib-6.0.0.tar.gz

For those who had trouble untarring them, they're gzip'd twice:

  gunzip luadaemon.tar.gz
  mv luadaemon.tar luadaemon.tar.gz
  tar tzf luadaemon.tar.gz

Same for cgilib.

I like what you've done with it, recording the type of transaction that each coroutine is waiting on so that it can be serviced later (if necessary) when epoll() indicates the associated event has occurred.

Thanks for posting this! It's nice to have a good example using the epoll() calls; I'm an old school select()er and I need to modernize.

Doug