Conversation
- New crate contract/emuthread with EmuThread<C: ConsoleCore> struct - spawn(core) starts a dedicated emulation thread with mpsc channels - send(cmd) / wait_frame() / last_commands() / join() public API - Derive Clone on GpuCommand and GpuCommandList for last_commands() - No consumers yet (compilation-only phase)
linter-service1 of 7 selected linter(s) reported issues or failed; 1 additional linter(s) reported warnings.
Show checked targets for rustfmtTarget file paths:
Show checked targets for cargo-clippyTarget file paths:
Cargo project targets:
Show checked targets for cargo-denyTarget file paths:
Cargo project targets:
Show checked targets for cargo-couplingTarget file paths:
Cargo project targets:
Show checked targets for cargo-symbol-lengthTarget file paths:
Cargo project targets:
Show checked targets for taploTarget file paths:
Show checked targets for editorconfig-checkerTarget file paths:
Show details for 2 linter(s) with warnings or failurescargo-denycargo-coupling |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
変更内容
contract/emuthread作成EmuThread<C: ConsoleCore>構造体:spawn(core): 専用スレッド起動、mpsc 2チャネル +last_cmds共有send(cmd): EmuCommand 送信wait_frame(): フレーム完了待機last_commands(): 最新の GpuCommandList 取得join(): スレッド終了contract/coreの GpuCommand / GpuCommandList に#[derive(Clone)]追加(last_commands()用)確認