aboutsummaryrefslogtreecommitdiff
path: root/builtins/thread.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-11 13:56:39 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-11 13:56:39 -0400
commit75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (patch)
treec9a66af84908aa6ce188344ffa7d962a88ba95f2 /builtins/thread.h
parentb0b23acf887bec28b5ef8d0dfe448c4228ee0eb3 (diff)
Rename closure_t -> Closure_t for consistency
Diffstat (limited to 'builtins/thread.h')
-rw-r--r--builtins/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/thread.h b/builtins/thread.h
index 2956dda6..2e3298cb 100644
--- a/builtins/thread.h
+++ b/builtins/thread.h
@@ -10,7 +10,7 @@
#include "types.h"
#include "util.h"
-pthread_t *Thread$new(closure_t fn);
+pthread_t *Thread$new(Closure_t fn);
void Thread$cancel(pthread_t *thread);
void Thread$join(pthread_t *thread);
void Thread$detach(pthread_t *thread);