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.
|
#pragma once
|
|
|
|
#include <threads.h>
|
|
|
|
#include "runtime.h"
|
|
|
|
extern thread_local struct arch_context worker_thread_base_context;
|
|
extern thread_local int worker_thread_epoll_file_descriptor;
|
|
extern thread_local int worker_thread_idx;
|
|
|
|
void *worker_thread_main(void *return_code);
|