Fix GNU/Linux emulation about termination of a thread.
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2019-12-04 NIIBE Yutaka <gniibe@fsij.org>
|
||||||
|
|
||||||
|
* chopstx-gnu-linux.c (chx_thread_start): Fix return value.
|
||||||
|
|
||||||
2019-11-21 NIIBE Yutaka <gniibe@fsij.org>
|
2019-11-21 NIIBE Yutaka <gniibe@fsij.org>
|
||||||
|
|
||||||
* chopstx-cortex-m.c (chx_set_running): New.
|
* chopstx-cortex-m.c (chx_set_running): New.
|
||||||
|
|||||||
@@ -328,9 +328,11 @@ chx_sched (uint32_t yield)
|
|||||||
static void __attribute__((__noreturn__))
|
static void __attribute__((__noreturn__))
|
||||||
chx_thread_start (voidfunc thread_entry, void *arg)
|
chx_thread_start (voidfunc thread_entry, void *arg)
|
||||||
{
|
{
|
||||||
|
void *ret;
|
||||||
|
|
||||||
chx_cpu_sched_unlock ();
|
chx_cpu_sched_unlock ();
|
||||||
thread_entry (arg);
|
ret = thread_entry (arg);
|
||||||
chopstx_exit (0);
|
chopstx_exit (ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct chx_thread *
|
static struct chx_thread *
|
||||||
|
|||||||
Reference in New Issue
Block a user