mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
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 <samuel.williams@oriontransfer.co.nz>
This commit is contained in:
parent
8d27d00af5
commit
42a0bed351
Notes:
git
2022-03-30 16:37:01 +09:00
Merged-By: ioquatix <samuel@codeotaku.com>
22 changed files with 567 additions and 565 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue