#include "clang/Basic/SourceLocation.h"
#include "llvm/ADT/StringRef.h"
Go to the source code of this file.
|
enum | clang::threadSafety::ProtectedOperationKind {
clang::threadSafety::POK_VarDereference
, clang::threadSafety::POK_VarAccess
, clang::threadSafety::POK_FunctionCall
, clang::threadSafety::POK_PassByRef
,
clang::threadSafety::POK_PtPassByRef
, clang::threadSafety::POK_ReturnByRef
, clang::threadSafety::POK_PtReturnByRef
} |
| This enum distinguishes between different kinds of operations that may need to be protected by locks. More...
|
|
enum | clang::threadSafety::LockKind { clang::threadSafety::LK_Shared
, clang::threadSafety::LK_Exclusive
, clang::threadSafety::LK_Generic
} |
| This enum distinguishes between different kinds of lock actions. More...
|
|
enum | clang::threadSafety::AccessKind { clang::threadSafety::AK_Read
, clang::threadSafety::AK_Written
} |
| This enum distinguishes between different ways to access (read or write) a variable. More...
|
|
enum | clang::threadSafety::LockErrorKind { clang::threadSafety::LEK_LockedSomeLoopIterations
, clang::threadSafety::LEK_LockedSomePredecessors
, clang::threadSafety::LEK_LockedAtEndOfFunction
, clang::threadSafety::LEK_NotLockedAtEndOfFunction
} |
|