Skip to content

Commit

Permalink
remove tsan annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Oct 2, 2023
1 parent ed1af3f commit a83b3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/allocator_sba.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ static void *s_sba_alloc(struct small_block_allocator *sba, size_t size) {
return aws_mem_acquire(sba->allocator, size);
}

AWS_SUPPRESS_ASAN AWS_SUPPRESS_TSAN static void s_sba_free(struct small_block_allocator *sba, void *addr) {
static void s_sba_free(struct small_block_allocator *sba, void *addr) {
if (!addr) {
return;
}
Expand Down

0 comments on commit a83b3da

Please sign in to comment.