view example/regex/WordCount.h @ 1200:7b866a392adc draft

mege 1179
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jul 2011 18:51:10 +0900
parents e55b9d2cb33e 2abd68a1ac2a
children ffef576db4b3
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;

<<<<<<< local

=======
  //regexのENVの成分
>>>>>>> other
  bool print_count;
  bool print_filename;
  int count;
  char *filename;
<<<<<<< local
} WordCount, ENV, *ENVP; 


=======
}WordCount;
  //} WordCount, ENV;
//typedef ENV *ENVP;
>>>>>>> other