aboutsummaryrefslogtreecommitdiff
path: root/lib/arch/riscv64/thread_create.s
blob: df3a958a8084c21b93e632125111aa1e05b414a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (c) 2021 Johannes Stoelp

    .section .text, "ax", @progbits

     # extern "C" void thread_create();
    .global thread_create
    .type   thread_create, @function
thread_create:
    .cfi_startproc
    ld a0, 8(sp)
    ld t0, 0(sp)

    jalr t0

    # FIXME: no return from thread after user fn finished.
1:
    j 1b
    .cfi_endproc
    .size thread_create, .-thread_create