Fixing a rotation race condition at termination.

Noticed with DS, but could just as well happen with ASCII.
This commit is contained in:
Robin Sommer 2012-05-16 18:24:55 -07:00
parent 99db264775
commit 5dae925f67
3 changed files with 20 additions and 0 deletions

View file

@ -200,6 +200,7 @@ private:
WriterInfo* FindWriter(WriterFrontend* writer);
vector<Stream *> streams; // Indexed by stream enum.
int rotations_pending; // Number of rotations not yet finished.
};
}