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:
parent
2aec870a14
commit
dc9d847b8b
20 changed files with 124 additions and 18 deletions
|
@ -44,6 +44,7 @@ struct trdstr {
|
|||
/* initial part must match struct empobj */
|
||||
short ef_type;
|
||||
short trd_uid;
|
||||
unsigned trd_seqno;
|
||||
time_t trd_timestamp;
|
||||
natid trd_owner;
|
||||
/* end of part matching struct empobj */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue