1 #pragma once 2 #include <common/atomic.h> 3 4 // 该结构体需要与libs/refcount.rs的保持一致,且以rust版本为准 5 typedef struct refcount_struct { 6 atomic_t refs; 7 } refcount_t;