[compiler-rt] [compiler-rt] setproctitle interception for NetBSD/FreeBSD. (PR #131648)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 10:41:17 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff 83356f3b62e95b980ca48083aafa4a1b4040d4c9 f5ede9625df4ab77cd2d74e771c6afddcb80aafd --extensions h,inc,c -- compiler-rt/test/sanitizer_common/TestCases/Posix/setproctitle.c compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
index 47b4ea5351..761dbd3f5a 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
@@ -1856,8 +1856,7 @@ FORMAT_INTERCEPTOR_IMPL(__isoc99_snprintf, __isoc99_vsnprintf, str, size,
 #endif
 
 #if SANITIZER_INTERCEPT_SETPROCTITLE
-INTERCEPTOR(void, setproctitle, const char *fmt, ...)
-{
+INTERCEPTOR(void, setproctitle, const char *fmt, ...) {
   void *ctx;
   va_list ap;
   va_start(ap, fmt);
@@ -1867,9 +1866,9 @@ INTERCEPTOR(void, setproctitle, const char *fmt, ...)
   REAL(setproctitle)(fmt, ap);
   va_end(ap);
 }
-#define INIT_SETPROCTITLE COMMON_INTERCEPT_FUNCTION(setproctitle);
+#  define INIT_SETPROCTITLE COMMON_INTERCEPT_FUNCTION(setproctitle);
 #else
-#define INIT_SETPROCTITLE
+#  define INIT_SETPROCTITLE
 #endif
 
 #if SANITIZER_INTERCEPT_IOCTL
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/setproctitle.c b/compiler-rt/test/sanitizer_common/TestCases/Posix/setproctitle.c
index 3182391bd4..0b9b94877f 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Posix/setproctitle.c
+++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/setproctitle.c
@@ -1,7 +1,7 @@
 // RUN: %clang_asan -O2 %s -o %t
 // RUN: %env_asan_opts=check_printf=1 %run %t 2>&1
 
-// REQUIRES: freebsd || netbsd 
+// REQUIRES: freebsd || netbsd
 
 #include <unistd.h>
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/131648


More information about the llvm-commits mailing list