Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2001-09-08 | Changed all the mallocs and callocs to use the new safemalloc and | Robert James Kaes | 1 | -3/+4 | |
safecalloc. | |||||
2001-09-08 | Fixed a memory leak in thread_main(). | Robert James Kaes | 1 | -3/+17 | |
2001-09-07 | Explictly added the DETACHED creation method on threads. | Robert James Kaes | 1 | -2/+5 | |
2001-09-07 | Error message cleanup. | Robert James Kaes | 1 | -19/+29 | |
Include locking around access to the servers_waiting variable. | |||||
2001-09-06 | Try moving the kill thread code into the thread_main() function so it can | Robert James Kaes | 1 | -19/+13 | |
check if there are too many thread after it's finished with it's request. Needs to be cleaned up further (if this is the right idea) because of the locking around the servers_waiting variable. | |||||
2001-09-06 | Initialzed the servers_waiting explictly. Added debugging code to find out | Robert James Kaes | 1 | -3/+8 | |
why the threads are not being closed. | |||||
2001-08-28 | Changed the default stack size to 128 KB. | Robert James Kaes | 1 | -2/+8 | |
2001-08-27 | Changed the default stack size since some OS's have a stack size which is | Robert James Kaes | 1 | -3/+13 | |
too small. | |||||
2001-08-26 | Fixed a problem where child threads would not be closed if they had been | Robert James Kaes | 1 | -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-27 | Changed the thread_main() function to only deal with the connections per | Robert James Kaes | 1 | -18/+20 | |
thread if the user has actually requested it. Also changed some of the data types for the variables. | |||||
2001-05-23 | Fixed a potential problem with not zeroing the number of connections when | Robert James Kaes | 1 | -2/+12 | |
the threads are emptied. | |||||
2000-12-09 | Implimented the MaxRequestsPerChild directive. | Robert James Kaes | 1 | -15/+34 | |
2000-12-08 | Fixed a problem with polling for the number of active threads. No longer | Robert James Kaes | 1 | -41/+23 | |
polls. :) | |||||
2000-09-12 | tinyproxy now uses a pool of threads to handle connections. All the work | Robert James Kaes | 1 | -0/+214 | |
for creating new threads, deleting old thread, and generally managing the pool is done here. |