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.
sledge-serverless-framework/runtime/include/worker_thread.h

12 lines
277 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;
extern thread_local void *worker_dbf;
void *worker_thread_main(void *return_code);