mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-09 14:20:58 +00:00
Add infrastructure for clang static lock checking (#2492)
Co-authored-by: Takeshi Nakatani <ggtakec@gmail.com>
This commit is contained in:
parent
db80fa2eb0
commit
03651a30ea
16
src/common.h
16
src/common.h
@ -51,8 +51,20 @@ extern std::string instance_name;
|
|||||||
//-------------------------------------------------------------------
|
//-------------------------------------------------------------------
|
||||||
#define S3FS_FUNCATTR_WEAK __attribute__ ((weak,unused))
|
#define S3FS_FUNCATTR_WEAK __attribute__ ((weak,unused))
|
||||||
|
|
||||||
// empty annotation to indicate lock requirement
|
//-------------------------------------------------------------------
|
||||||
#define REQUIRES(...)
|
// For clang -Wthread-safety
|
||||||
|
//-------------------------------------------------------------------
|
||||||
|
#if defined(__clang__)
|
||||||
|
#define THREAD_ANNOTATION_ATTRIBUTE(x) __attribute__((x))
|
||||||
|
#else
|
||||||
|
#define THREAD_ANNOTATION_ATTRIBUTE(x) // no-op
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define GUARDED_BY(x) \
|
||||||
|
THREAD_ANNOTATION_ATTRIBUTE(guarded_by(x))
|
||||||
|
|
||||||
|
#define REQUIRES(...) \
|
||||||
|
THREAD_ANNOTATION_ATTRIBUTE(requires_capability(__VA_ARGS__))
|
||||||
|
|
||||||
#endif // S3FS_COMMON_H_
|
#endif // S3FS_COMMON_H_
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user