Mercurial > hg > Game > Cerium
view example/regex/WordCount.h @ 1224:17508bef43be draft
fix SingleCore for FifoTaskManager
author | Daichi TOMA <e085740@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 Jul 2011 02:02:51 +0900 |
parents | ffef576db4b3 |
children |
line wrap: on
line source
typedef struct wordCount { struct wordCount *self; int size; // remaining file size int division_size; // for each word count task int division_out_size; int out_size; int task_num; // remaining task count int task_blocks; // spawn task one at a time int status_num; int task_spwaned; unsigned long long *o_data; unsigned long long *head_tail_flag; int out_task_num; int pad; char * file_mmap; int file_size; HTaskPtr t_print; //regexのENVの成分 bool print_count; bool print_filename; int count; char *filename; } WordCount, ENV, *ENVP;