mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
[uart] Fix uart driver & testapp j6::thread usage
The prior change to j6::thread allowing arguments did not test drv.uart or testapp. Oops.
This commit is contained in:
@@ -81,7 +81,7 @@ channel_pump_loop()
|
||||
}
|
||||
|
||||
void
|
||||
pump_proc()
|
||||
pump_proc(void *)
|
||||
{
|
||||
j6_process_exit(channel_pump_loop());
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ constexpr uintptr_t stack_top = 0xf80000000;
|
||||
uint32_t flipflop = 0;
|
||||
|
||||
void
|
||||
thread_proc()
|
||||
thread_proc(void*)
|
||||
{
|
||||
j6_log("sub thread starting");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user