Mercurial > hg > Game > Cerium
view example/word_count/WordCount.h @ 1187:d4311f83377a draft
Put in order Test directory
author | Daichi TOMA |
---|---|
date | Thu, 07 Jul 2011 13:31:02 +0900 |
parents | 5f0135ca75ee |
children | d9122ca02431 |
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; } WordCount;