Skip to content

Commit

Permalink
Merge pull request #11 from Xila-Project/Feature/Tasks
Browse files Browse the repository at this point in the history
Remove debug print from task bindings
  • Loading branch information
AlixANNERAUD authored Jun 29, 2024
2 parents 533643a + 9ef967a commit 59af25c
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 59af25c

Please sign in to comment.