diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-08-17 18:58:50 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-08-24 08:29:50 -0400 | 
| commit | ef03888333a27769311cf75a5d17a128caa00a61 (patch) | |
| tree | 589ef538800d8cb8863831fd88ab27b2edbe0350 /zebra/zserv.h | |
| parent | bce18b18fefcfb5c6f317dd187104963ce771d06 (diff) | |
zebra: Convert time to uint64_t for zclient data structures
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zserv.h')
| -rw-r--r-- | zebra/zserv.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index 9986cc9f7e..db7b70d7c4 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -216,15 +216,15 @@ struct zserv {  	 */  	/* monotime of client creation */ -	_Atomic uint32_t connect_time; +	_Atomic uint64_t connect_time;  	/* monotime of last message received */ -	_Atomic uint32_t last_read_time; +	_Atomic uint64_t last_read_time;  	/* monotime of last message sent */ -	_Atomic uint32_t last_write_time; +	_Atomic uint64_t last_write_time;  	/* command code of last message read */ -	_Atomic uint32_t last_read_cmd; +	_Atomic uint64_t last_read_cmd;  	/* command code of last message written */ -	_Atomic uint32_t last_write_cmd; +	_Atomic uint64_t last_write_cmd;  	/*  	 * Number of instances configured with  | 
