summaryrefslogtreecommitdiff
path: root/src/thread.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2001-08-26Fixed a problem where child threads would not be closed if they had beenRobert James Kaes1-7/+8
created after the initial creation. Also fixed a problem where the status of the threads were not going back to T_WAITING if MaxRequestsPerChild was 0.
2001-05-27Changed the thread_main() function to only deal with the connections perRobert James Kaes1-18/+20
thread if the user has actually requested it. Also changed some of the data types for the variables.
2001-05-23Fixed a potential problem with not zeroing the number of connections whenRobert James Kaes1-2/+12
the threads are emptied.
2000-12-09Implimented the MaxRequestsPerChild directive.Robert James Kaes1-15/+34
2000-12-08Fixed a problem with polling for the number of active threads. No longerRobert James Kaes1-41/+23
polls. :)
2000-09-12tinyproxy now uses a pool of threads to handle connections. All the workRobert James Kaes1-0/+214
for creating new threads, deleting old thread, and generally managing the pool is done here.