You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
231 B

#pragma once
#include <threads.h>
#include "runtime.h"
extern thread_local struct arch_context worker_thread_base_context;
extern thread_local int worker_thread_idx;
void *worker_thread_main(void *return_code);