| 763 | struct Zthread { |
| 764 | |
| 765 | Zthread(bool is_chained, std::string& partname) : |
| 766 | ztchain(NULL), |
| 767 | zstream(NULL), |
| 768 | zpipe_in(NULL), |
| 769 | is_chained(is_chained), |
| 770 | quit(false), |
| 771 | stop(false), |
| 772 | is_extracting(false), |
| 773 | is_waiting(false), |
| 774 | is_assigned(false), |
| 775 | partnameref(partname), |
| 776 | findpart(NULL) |
| 777 | { |
| 778 | pipe_fd[0] = -1; |
| 779 | pipe_fd[1] = -1; |
| 780 | } |
| 781 | |
| 782 | ~Zthread() |
| 783 | { |
nothing calls this directly
no outgoing calls
no test coverage detected