Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

annotate alloc on unixes. #548

Merged
merged 2 commits into from
Sep 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/snmalloc/mem/localalloc.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#pragma once

#ifdef _MSC_VER
# define ALLOCATOR __declspec(allocator)
#if defined(_MSC_VER)
# define ALLOCATOR __declspec(allocator) __declspec(restrict)
#elif __has_attribute(malloc)
# define ALLOCATOR __attribute__((malloc))
#else
# define ALLOCATOR
#endif
Expand Down