-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add implementation of saving Lock data
- Loading branch information
Showing
12 changed files
with
834 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,12 @@ | ||
package protocol | ||
|
||
type LockDBState struct { | ||
_padding0 [14]uint32 | ||
LockCount uint64 | ||
_padding1 [14]uint32 | ||
UnLockCount uint64 | ||
_padding2 [15]uint32 | ||
LockedCount uint32 | ||
_padding3 [15]uint32 | ||
KeyCount uint32 | ||
_padding4 [15]uint32 | ||
WaitCount uint32 | ||
_padding5 [15]uint32 | ||
TimeoutedCount uint32 | ||
_padding6 [15]uint32 | ||
ExpriedCount uint32 | ||
_padding7 [15]uint32 | ||
UnlockErrorCount uint32 | ||
_padding8 [15]uint32 | ||
} |
Oops, something went wrong.