summaryrefslogtreecommitdiff
path: root/parsing.c
AgeCommit message (Collapse)AuthorFilesLines
2010-06-03Return NULL from thread_func.Jon Bergli Heier1-0/+2
2010-06-02Added a minimum word length config option, "wordlen_min".Jon Bergli Heier1-22/+17
Also did some minor cleanup of the word add code in process_file.
2010-01-28Fixed mutex locks on several objects in process_file().Jon Bergli Heier1-8/+20
2010-01-28Fixed monolog readings not being synchronized when using more than oneJon Bergli Heier1-3/+7
thread. This is solved by moving last_user, in_monolog and monolog_len to the heap. These are already inside the user_mutex lock when used.
2010-01-08Implemented monolog counters.Jon Bergli Heier1-0/+19
2009-11-22Added support for using pthreads.Jon Bergli Heier1-0/+168
Data processing (parsing) moved to parsing.c. The line parsing code is moved to its own function which is called from one or more threads (depends on the "threads" setting in the config file).