/* * A function-like feature checking macro that is a wrapper around * `__has_attribute`, which is defined by GCC 5+ and Clang and evaluates to a * nonzero constant integer if the attribute is supported or 0 if not.
*/ #ifdef __has_attribute #define HAVE_ATTRIBUTE(x) __has_attribute(x) #else #define HAVE_ATTRIBUTE(x) 0 #endif
/* Documents if a shared field or global variable needs to be protected by a mutex. */ #define GUARDED_BY(x) __attribute__((guarded_by(x)))
/* * Documents if the memory location pointed to by a pointer should be guarded by * a mutex when dereferencing the pointer.
*/ #define PT_GUARDED_BY(x) __attribute__((pt_guarded_by(x)))
/* Documents if a type is a lockable type. */ #define LOCKABLE __attribute__((lockable))
/* Documents a function that expects a lock not to be held prior to entry. */ #define LOCKS_EXCLUDED(...) __attribute__((locks_excluded(__VA_ARGS__)))
/* Documents a function that returns a lock. */ #define LOCK_RETURNED(x) __attribute__((lock_returned(x)))
/* Documents functions that acquire a lock in the body of a function, and do not release it. */ #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__((exclusive_lock_function(__VA_ARGS__)))
/* * Documents functions that acquire a shared (reader) lock in the body of a * function, and do not release it.
*/ #define SHARED_LOCK_FUNCTION(...) __attribute__((shared_lock_function(__VA_ARGS__)))
/* * Documents functions that expect a lock to be held on entry to the function, * and release it in the body of the function.
*/ #define UNLOCK_FUNCTION(...) __attribute__((unlock_function(__VA_ARGS__)))
/* Documents functions that try to acquire a lock, and return success or failure. */ #define EXCLUSIVE_TRYLOCK_FUNCTION(...) \
__attribute__((exclusive_trylock_function(__VA_ARGS__)))
/* Documents a function that expects a mutex to be held prior to entry. */ #define EXCLUSIVE_LOCKS_REQUIRED(...) __attribute__((exclusive_locks_required(__VA_ARGS__)))
/* Documents a function that expects a shared (reader) lock to be held prior to entry. */ #define SHARED_LOCKS_REQUIRED(...) __attribute__((shared_locks_required(__VA_ARGS__)))
/* Turns off thread safety checking within the body of a particular function. */ #define NO_THREAD_SAFETY_ANALYSIS __attribute__((no_thread_safety_analysis))
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.