diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:56:39 -0400 |
| commit | 75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (patch) | |
| tree | c9a66af84908aa6ce188344ffa7d962a88ba95f2 /builtins/thread.h | |
| parent | b0b23acf887bec28b5ef8d0dfe448c4228ee0eb3 (diff) | |
Rename closure_t -> Closure_t for consistency
Diffstat (limited to 'builtins/thread.h')
| -rw-r--r-- | builtins/thread.h | 2 |
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); |
