From 6a9f8b204bc5312e1176d7634f873dc21b89f870 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 30 Aug 2022 08:49:55 -0600 Subject: [PATCH] Remove PTE prints --- src/platform/pte.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/platform/pte.rs b/src/platform/pte.rs index b2a193f15d..0de747db46 100644 --- a/src/platform/pte.rs +++ b/src/platform/pte.rs @@ -236,14 +236,12 @@ pub unsafe extern "C" fn pte_osThreadWaitForEnd(handle: pte_osThreadHandle) -> p #[no_mangle] pub unsafe extern "C" fn pte_osThreadCancel(handle: pte_osThreadHandle) -> pte_osResult { - println!("pte_osThreadCancel {:#x}", handle); //TODO: allow cancel of thread PTE_OS_OK } #[no_mangle] pub unsafe extern "C" fn pte_osThreadCheckCancel(handle: pte_osThreadHandle) -> pte_osResult { - println!("pte_osThreadCheckCancel {:#x}", handle); //TODO: thread cancel PTE_OS_OK } @@ -365,7 +363,6 @@ pub unsafe extern "C" fn pte_osSemaphoreCancellablePend( handle: pte_osSemaphoreHandle, pTimeout: *mut c_uint, ) -> pte_osResult { - println!("pte_osSemaphoreCancellablePend {:p} {:p}", handle, pTimeout); //TODO: thread cancel pte_osSemaphorePend(handle, pTimeout) }