Mercurial > hg > Game > Cerium
annotate example/word_count_test/WordCount.h @ 670:87040ec6b5f6 draft
add header.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 03 Dec 2009 09:02:40 +0900 |
parents | |
children | 54f0180cea0f |
rev | line source |
---|---|
670 | 1 |
2 typedef struct wordCount { | |
3 struct wordCount *self; | |
4 int size; // remaining file size | |
5 int division_size; // for each word count task | |
6 int division_out_size; | |
7 int out_size; | |
8 int task_num; // remaining task count | |
9 int task_blocks; // spawn task one at a time | |
10 int status_num; | |
11 int task_spwaned; | |
12 unsigned long long *o_data; | |
13 unsigned long long *head_tail_flag; | |
14 int out_task_num; | |
15 int pad; | |
16 char * file_mmap; | |
17 HTaskPtr t_print; | |
18 } WordCount; | |
19 |