-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save all dirty memory pages (including executable pages) and it's fla…
…g to snapshot (#218) * Store and resume page flag in snapshot * cargo fmt * Save code in snapshot * Keep the dirty flag caused by load_elf
- Loading branch information
Showing
6 changed files
with
32 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ckb-vm" | ||
description = "CKB's Virtual machine" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
license = "MIT" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -25,7 +25,7 @@ goblin_v023 = { package = "goblin", version = "=0.2.3" } | |
goblin_v040 = { package = "goblin", version = "=0.4.0" } | ||
scroll = "0.10" | ||
serde = { version = "1.0", features = ["derive"] } | ||
ckb-vm-definitions = { path = "definitions", version = "0.20.0" } | ||
ckb-vm-definitions = { path = "definitions", version = "0.20.1" } | ||
derive_more = "0.99.2" | ||
rand = "0.7.3" | ||
|
||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "ckb-vm-definitions" | ||
description = "Common definition files for CKB VM" | ||
version = "0.20.0" | ||
version = "0.20.1" | ||
license = "MIT" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
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
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