about summary refs log tree commit homepage
path: root/lib/unicorn.rb
DateCommit message (Expand)
2009-05-22Fix a warning about @pid being uninitialized
2009-05-22Ignore unhandled master signals in the workers
2009-05-22Safer timeout handling and test case
2009-04-25Fix log rotation being delayed in workers when idle
2009-04-24cleanup: avoid duped self-pipe init/replacement logic
2009-04-24SIGTT{IN,OU} {in,de}crements worker_processes
2009-04-24Allow std{err,out}_path to be changed via HUP
2009-04-24minor cleanups and save a few variables
2009-04-24Avoid getppid() if serving heavy traffic
2009-04-24Fixup reference to a dead variable
2009-04-23Describe the global constants we use.
2009-04-23make SELF_PIPE is a global constant
2009-04-23Make LISTENERS and WORKERS global constants, too
2009-04-23IO_PURGATORY should be a global constant
2009-04-21Cleanup some unnecessary requires
2009-04-21Remove @start_ctx instance variable
2009-04-21rename socket.rb => socket_helper.rb
2009-04-16fix 100% CPU usage when idle
2009-04-15worker_loop cleanups, var golf, and yak-shaving
2009-04-15before_commit and before_exec can never be nil/false
2009-04-14s/rotating/reopening/g in log messages
2009-04-14Explicitly trap SIGINT/SIGTERM again
2009-04-13Fix SIGINT/SIGTERM handling (broken in 0.5.0)
2009-04-13Expose worker to {before,after}_fork hooks
2009-04-13Remove unnecessary local variables in process_client
2009-04-13small cleanups in signal handling and worker init
2009-04-12Don't bother restoring ENV or umask across reexec
2009-04-12Remove unnecessary sync assignment
2009-04-12Save one fcntl() syscall on every request
2009-04-11Remove _all_ non-POSIX socket options
2009-04-10listen backlog, sndbuf, rcvbuf are always changeable
2009-04-10Restore unlinked UNIX sockets on SIGHUP
2009-04-10config: handle listener unbind/replace in config file
2009-04-10close listeners when removing them from our array
2009-04-07cleanup some log messages
2009-04-02Use File.basename instead of a regexp
2009-04-02More descriptive process titles
2009-04-01Close std{err,out} redirection targets
2009-04-01FD_CLOEXEC all non-listen descriptors before exec
2009-04-01All IOs created in workers have FD_CLOEXEC set
2009-04-01Remove set_cloexec wrapper and require FD_CLOEXEC
2009-03-31Use {read,write}_nonblock on the pipe
2009-03-29Fix default listener setup
2009-03-29Avoid having two pid files pointing to the same pid
2009-03-29configurator: per-listener backlog, {rcv,snd}buf config
2009-03-27Always try to send a valid HTTP response back
2009-03-27No need to disable luserspace buffering on client socket
2009-03-27style: symbols instead of strings for signal names
2009-03-27Deferred log rotation in workers
2009-03-26Don't allow failed log rotation to to break app