aboutsummaryrefslogtreecommitdiff
path: root/builtins/thread.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-02 18:47:39 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-02 18:47:39 -0400
commit61e482f6f36aee6f72392a6188f2ec5c858b88fd (patch)
treebea4123fcc62dd834405ae89ce9fe260e90a0023 /builtins/thread.h
parentf0f8f218703ebb4512b3cd3f9e06b86a7d9861b0 (diff)
Initial WIP first past
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 efccae33..2956dda6 100644
--- a/builtins/thread.h
+++ b/builtins/thread.h
@@ -14,7 +14,7 @@ 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);
-CORD Thread$as_text(const pthread_t **thread, bool colorize, const TypeInfo *type);
+Text_t Thread$as_text(const pthread_t **thread, bool colorize, const TypeInfo *type);
extern TypeInfo Thread;