Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
use the calculated EMU_STACK_SIZE directly.
Browse files Browse the repository at this point in the history
fix #146

Signed-off-by: Yang, Longlong <[email protected]>
  • Loading branch information
longlongyang authored and jyao1 committed Dec 12, 2023
1 parent a0b0220 commit 45e459e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/spdm-requester-emu/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ fn main() {
use std::thread;

thread::Builder::new()
.stack_size(EMU_STACK_SIZE * 2)
.stack_size(EMU_STACK_SIZE)
.spawn(emu_main)
.unwrap()
.join()
Expand Down

0 comments on commit 45e459e

Please sign in to comment.