aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System/ThreadLocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/System/ThreadLocal.h')
-rw-r--r--include/llvm/System/ThreadLocal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/System/ThreadLocal.h b/include/llvm/System/ThreadLocal.h
index 3d44f62..e6edd79 100644
--- a/include/llvm/System/ThreadLocal.h
+++ b/include/llvm/System/ThreadLocal.h
@@ -28,6 +28,7 @@ namespace llvm {
virtual ~ThreadLocalImpl();
void setInstance(const void* d);
const void* getInstance();
+ void removeInstance();
};
/// ThreadLocal - A class used to abstract thread-local storage. It holds,
@@ -43,6 +44,9 @@ namespace llvm {
// set - Associates a pointer to an object with the current thread.
void set(T* d) { setInstance(d); }
+
+ // erase - Removes the pointer associated with the current thread.
+ void erase() { removeInstance(); }
};
}
}