mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14: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
|
void
|
||||||
pump_proc()
|
pump_proc(void *)
|
||||||
{
|
{
|
||||||
j6_process_exit(channel_pump_loop());
|
j6_process_exit(channel_pump_loop());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ constexpr uintptr_t stack_top = 0xf80000000;
|
|||||||
uint32_t flipflop = 0;
|
uint32_t flipflop = 0;
|
||||||
|
|
||||||
void
|
void
|
||||||
thread_proc()
|
thread_proc(void*)
|
||||||
{
|
{
|
||||||
j6_log("sub thread starting");
|
j6_log("sub thread starting");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user