summaryrefslogtreecommitdiff
path: root/libc/src/pthread/pthread_attr_getstack.cpp
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2023-09-26 11:45:04 +0200
committerGitHub <noreply@github.com>2023-09-26 11:45:04 +0200
commitb6bc9d72f65a5086f310f321e969d96e9a559e75 (patch)
tree1e9a9f8c36c9dfc0106507f7b7a0055af83c4a07 /libc/src/pthread/pthread_attr_getstack.cpp
parent7675f541f75baa20e8ec007cd625a837e89fc01f (diff)
[libc] Mass replace enclosing namespace (#67032)
This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
Diffstat (limited to 'libc/src/pthread/pthread_attr_getstack.cpp')
-rw-r--r--libc/src/pthread/pthread_attr_getstack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/src/pthread/pthread_attr_getstack.cpp b/libc/src/pthread/pthread_attr_getstack.cpp
index 564b8fde52f8..8788fbc1ffdd 100644
--- a/libc/src/pthread/pthread_attr_getstack.cpp
+++ b/libc/src/pthread/pthread_attr_getstack.cpp
@@ -14,17 +14,17 @@
#include <pthread.h>
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(int, pthread_attr_getstack,
(const pthread_attr_t *__restrict attr,
void **__restrict stack, size_t *__restrict stacksize)) {
// As of writing this `pthread_attr_getstacksize` can never fail.
- int result = __llvm_libc::pthread_attr_getstacksize(attr, stacksize);
+ int result = LIBC_NAMESPACE::pthread_attr_getstacksize(attr, stacksize);
if (LIBC_UNLIKELY(result != 0))
return result;
*stack = attr->__stack;
return 0;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE