This commit fixes a typo in which the function`uk_thread_uktcb_fini()`,
as declared in uksched's `tcb_impl.h`, was incorrectly referred to as
`uk_thread_tcb_fini()`.
Signed-off-by: Eduard Vintilă <eduard.vintila47@gmail.com>
Reviewed-by: Stefan Jumarea <stefanjumarea02@gmail.com>
Reviewed-by: Razvan Deaconescu <razvand@unikraft.io>
Approved-by: Razvan Deaconescu <razvand@unikraft.io>
Tested-by: Unikraft CI <monkey@unikraft.io>
GitHub-Closes: #26
/* This callback will only be called for threads that are NOT
* created with the pthread API
*/
-void uk_thread_tcb_fini(struct uk_thread *thread, void *tcb)
+void uk_thread_uktcb_fini(struct uk_thread *thread, void *tcb)
{
struct pthread *td = (struct pthread *) tcb;