| 107 | |
| 108 | template<class T> |
| 109 | constexpr py_thread_v |
| 110 | py_thead_h() |
| 111 | { |
| 112 | /* Hack. Python 3.3 and below don't have the prev field */ |
| 113 | return { |
| 114 | sizeof(T), |
| 115 | {offsetof(T, next)}, |
| 116 | {offsetof(T, next)}, |
| 117 | {offsetof(T, interp)}, |
| 118 | {offsetof(T, frame)}, |
| 119 | {offsetof(T, thread_id)}, |
| 120 | }; |
| 121 | } |
| 122 | |
| 123 | template<class T> |
| 124 | constexpr py_thread_v |
nothing calls this directly
no outgoing calls
no test coverage detected