Add sequence numbers to game state (experimental)

This catches output dependency violations, e.g. two threads doing a
read-modify-write without synchronization.

New struct emptypedstr member seqno.  Make sure all members of unit
empobj_storage share it.  Set it in ef_blank() and ef_set_uid(), step
it in ef_write().  fairland and files don't use ef_set_uid(); need to
set it manually in files.c's main() and file_sct_init().

Factor do_read() out of fillcache() to make it available for
new get_seqno().
This commit is contained in:
Markus Armbruster 2008-03-21 14:22:07 +01:00 committed by Markus Armbruster
parent 2aec870a14
commit dc9d847b8b
20 changed files with 124 additions and 18 deletions

View file

@ -57,6 +57,7 @@ struct empobj {
*/
short ef_type;
short uid;
unsigned seqno;
time_t timestamp;
/* end of part matching struct emptypedstr */
natid own; /* valid if EFF_OWNER is in table's flags */