From 245eb2898e042bda373354967fa006ee05cc7b4a Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Sun, 3 May 2026 18:00:47 -0500 Subject: [PATCH] runtime: declare __thread_create and __thread_join in header for C99 compliance --- el-compiler/runtime/el_runtime.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/el-compiler/runtime/el_runtime.h b/el-compiler/runtime/el_runtime.h index 8b80ee7..bcf8f59 100644 --- a/el-compiler/runtime/el_runtime.h +++ b/el-compiler/runtime/el_runtime.h @@ -756,6 +756,9 @@ el_val_t trace_span_start(el_val_t name); el_val_t trace_span_end(el_val_t span_handle); el_val_t emit_event(el_val_t name, el_val_t duration_ms); +el_val_t __thread_create(el_val_t fn_name_v, el_val_t arg_v); +el_val_t __thread_join(el_val_t tid_v); + #ifdef __cplusplus } #endif