summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-03-11 09:35:00 +0100
committerYves Orton <demerphq@gmail.com>2023-04-29 09:09:53 +0200
commit53175c6044c7d25c802103a5b633716908e9ad91 (patch)
tree69a10114caaeb3d159889f08c36633bae342d7a8 /malloc.c
parent638721ede9195d09472125f1734858156081a25e (diff)
downloadperl-53175c6044c7d25c802103a5b633716908e9ad91.tar.gz
replace "define\t" with "define " in most "normal" core files.
The main exceptions being dist/, ext/, and Configure related files, which will be updated in a subsequent commit. Files in the cpan/ directory are also omitted as they are not owned by the core. '#define' has seven characters, so following it with a \t makes it look like '#define ' when it is not, which then frustrates attempts to find where a given define is. If you *know* then you do a git grep -P 'define\s+WHATEVER' but if don't or you forget, you can get very confused trying to find where a given define is located. This fixes all such cases so they actually are 'define WHATEVER' instead. If this patch is getting in your way with blame analysis then view it with the -w option to blame.
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/malloc.c b/malloc.c
index 022b664682..8a1599acbf 100644
--- a/malloc.c
+++ b/malloc.c
@@ -410,25 +410,25 @@ union overhead {
u_int ovu_rmagic; /* range magic number */
#endif
} ovu;
-#define ov_magic ovu.ovu_magic
-#define ov_index ovu.ovu_index
-#define ov_size ovu.ovu_size
-#define ov_rmagic ovu.ovu_rmagic
+#define ov_magic ovu.ovu_magic
+#define ov_index ovu.ovu_index
+#define ov_size ovu.ovu_size
+#define ov_rmagic ovu.ovu_rmagic
};
-#define MAGIC 0xff /* magic # on accounting info */
+#define MAGIC 0xff /* magic # on accounting info */
#define RMAGIC 0x55555555 /* magic # on range info */
#define RMAGIC_C 0x55 /* magic # on range info */
#ifdef RCHECK
-# define RMAGIC_SZ sizeof (u_int) /* Overhead at end of bucket */
+# define RMAGIC_SZ sizeof (u_int) /* Overhead at end of bucket */
# ifdef TWO_POT_OPTIMIZE
# define MAX_SHORT_BUCKET (12 * BUCKETS_PER_POW2) /* size-1 fits in short */
# else
# define MAX_SHORT_BUCKET (13 * BUCKETS_PER_POW2)
# endif
#else
-# define RMAGIC_SZ 0
+# define RMAGIC_SZ 0
#endif
#if !defined(PACK_MALLOC) && defined(BUCKETS_ROOT2)
@@ -812,7 +812,7 @@ static int getpages_adjacent(MEM_SIZE require);
* smallest allocatable block is 8 bytes. The overhead information
* precedes the data area returned to the user.
*/
-#define NBUCKETS (BITS_IN_PTR*BUCKETS_PER_POW2 + 1)
+#define NBUCKETS (BITS_IN_PTR*BUCKETS_PER_POW2 + 1)
static union overhead *nextf[NBUCKETS];
#if defined(PURIFY) && !defined(USE_PERL_SBRK)
@@ -1059,7 +1059,7 @@ emergency_sbrk(MEM_SIZE size)
#ifdef DEBUGGING
#undef ASSERT
-#define ASSERT(p,diag) if (!(p)) botch(diag,STRINGIFY(p),__FILE__,__LINE__);
+#define ASSERT(p,diag) if (!(p)) botch(diag,STRINGIFY(p),__FILE__,__LINE__);
static void
botch(const char *diag, const char *s, const char *file, int line)
@@ -1095,7 +1095,7 @@ botch(const char *diag, const char *s, const char *file, int line)
}
}
#else
-#define ASSERT(p, diag)
+#define ASSERT(p, diag)
#endif
#ifdef MALLOC_FILL