Skip to content

Commit

Permalink
Remove debug print from task bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
AlixANNERAUD committed Jun 29, 2024
1 parent cc8b965 commit 9ef967a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Modules/Bindings/src/Task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ fn Sleep(Duration: u64) {

#[Bind_function_native(Prefix = "Task")]
fn New_task(Name: &str, Stack_size: u32, Function: u32) -> Result_type<()> {
println!("New task: {}", Name);
println!("Function: {}", Function);

let New_environment = Environment
.Create_environment(Stack_size as usize)
.map_err(|_| Error_type::Failed_to_spawn_thread)
Expand Down

0 comments on commit 9ef967a

Please sign in to comment.