From be384c0caa92cb152c264125fb265373e6a50440 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 2 Jan 2025 16:24:07 -0500 Subject: Replace threads with generic mutexed datastructures. --- stdlib/datatypes.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'stdlib/datatypes.h') diff --git a/stdlib/datatypes.h b/stdlib/datatypes.h index 31a99634..9c3cabc2 100644 --- a/stdlib/datatypes.h +++ b/stdlib/datatypes.h @@ -66,13 +66,6 @@ typedef struct Range_s { Int_t first, last, step; } Range_t; -typedef struct { - Array_t items; - pthread_mutex_t mutex; - pthread_cond_t cond; - int64_t max_size; -} Channel_t; - enum text_type { TEXT_SHORT_ASCII, TEXT_ASCII, TEXT_SHORT_GRAPHEMES, TEXT_GRAPHEMES, TEXT_SUBTEXT }; typedef struct Text_s { -- cgit v1.2.3