| 244 | } |
| 245 | |
| 246 | void |
| 247 | __tsan_write_range(uintptr_t addr, size_t size) |
| 248 | { |
| 249 | kcsan_access(addr, size, true, false, __RET_ADDR); |
| 250 | } |
| 251 | |
| 252 | void __tsan_init(void); |
| 253 | void __tsan_func_entry(void *); |
nothing calls this directly
no test coverage detected