From 42a0bed351979cb4a59c641fa5f03e49609561fd Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 30 Mar 2022 16:36:31 +0900 Subject: Prefix ccan headers (#4568) * Prefixed ccan headers * Remove unprefixed names in ccan/build_assert * Remove unprefixed names in ccan/check_type * Remove unprefixed names in ccan/container_of * Remove unprefixed names in ccan/list Co-authored-by: Samuel Williams --- thread_pthread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thread_pthread.h') diff --git a/thread_pthread.h b/thread_pthread.h index 2ac354046c..38a006627a 100644 --- a/thread_pthread.h +++ b/thread_pthread.h @@ -19,8 +19,8 @@ typedef struct native_thread_data_struct { union { - struct list_node ubf; - struct list_node gvl; + struct ccan_list_node ubf; + struct ccan_list_node gvl; } node; #if defined(__GLIBC__) || defined(__FreeBSD__) union @@ -58,7 +58,7 @@ typedef struct rb_global_vm_lock_struct { * switching between contended/uncontended GVL won't reset the * timer. */ - struct list_head waitq; /* <=> native_thread_data_t.node.ubf */ + struct ccan_list_head waitq; /* <=> native_thread_data_t.node.ubf */ const struct rb_thread_struct *timer; int timer_err; -- cgit v1.2.1