diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-07-23 01:28:32 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-29 15:01:04 -0600 |
commit | c717b80f05a240ff2c4e18d0166b941e76263ef3 (patch) | |
tree | 75458d8f14de4847e1574b60381d9e1b1e16e47a /include/valgrind/memcheck.h | |
parent | 7de0c5c431431ffe72103117a3509ecb9601c579 (diff) |
include: valgrind: Remove duplicate newlines
Drop all duplicate newlines. No functional change.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'include/valgrind/memcheck.h')
-rw-r--r-- | include/valgrind/memcheck.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/valgrind/memcheck.h b/include/valgrind/memcheck.h index 501cb14ed8a..4e5127a1a22 100644 --- a/include/valgrind/memcheck.h +++ b/include/valgrind/memcheck.h @@ -9,7 +9,6 @@ #ifndef __MEMCHECK_H #define __MEMCHECK_H - /* This file is for inclusion into client (your!) code. You can use these macros to manipulate and query memory permissions @@ -53,8 +52,6 @@ typedef = VG_USERREQ_TOOL_BASE('M','C') + 256 } Vg_MemCheckClientRequest; - - /* Client-code macros to manipulate the state of memory. */ /* Mark memory at _qzz_addr as unaddressable for _qzz_len bytes. */ @@ -102,7 +99,6 @@ typedef VG_USERREQ__DISCARD, \ 0, (_qzz_blkindex), 0, 0, 0) - /* Client-code macros to check the state of memory. */ /* Check that memory at _qzz_addr is addressable for _qzz_len bytes. @@ -133,7 +129,6 @@ typedef (volatile unsigned char *)&(__lvalue), \ (unsigned long)(sizeof (__lvalue))) - /* Do a full memory leak check (like --leak-check=full) mid-execution. */ #define VALGRIND_DO_LEAK_CHECK \ VALGRIND_DO_CLIENT_REQUEST_STMT(VG_USERREQ__DO_LEAK_CHECK, \ @@ -202,7 +197,6 @@ typedef suppressed = _qzz_suppressed; \ } - /* Get the validity data for addresses [zza..zza+zznbytes-1] and copy it into the provided zzvbits array. Return values: 0 if not running on valgrind |