| 136 | |
| 137 | template<class T> |
| 138 | constexpr py_thread_v |
| 139 | py_threadv311() |
| 140 | { |
| 141 | return { |
| 142 | sizeof(T), |
| 143 | {offsetof(T, prev)}, |
| 144 | {offsetof(T, next)}, |
| 145 | {offsetof(T, interp)}, |
| 146 | {offsetof(T, cframe)}, |
| 147 | {offsetof(T, thread_id)}, |
| 148 | {offsetof(T, native_thread_id)}, |
| 149 | }; |
| 150 | } |
| 151 | |
| 152 | template<class T> |
| 153 | constexpr py_thread_v |
nothing calls this directly
no outgoing calls
no test coverage detected