Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 May 2019 12:51:29 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r348160 - stable/12/libexec/rtld-elf
Message-ID:  <201905231251.x4NCpTxb085523@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Thu May 23 12:51:29 2019
New Revision: 348160
URL: https://svnweb.freebsd.org/changeset/base/348160

Log:
  MFC r347692:
  Remove more dead definitions from rtld_malloc.c after r347019.

Modified:
  stable/12/libexec/rtld-elf/rtld_malloc.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/libexec/rtld-elf/rtld_malloc.c
==============================================================================
--- stable/12/libexec/rtld-elf/rtld_malloc.c	Thu May 23 12:51:13 2019	(r348159)
+++ stable/12/libexec/rtld-elf/rtld_malloc.c	Thu May 23 12:51:29 2019	(r348160)
@@ -81,17 +81,13 @@ union	overhead {
 	} ovu;
 #define	ov_magic	ovu.ovu_magic
 #define	ov_index	ovu.ovu_index
-#define	ov_rmagic	ovu.ovu_rmagic
-#define	ov_size		ovu.ovu_size
 };
 
 static void morecore(int bucket);
 static int morepages(int n);
 static int findbucket(union overhead *freep, int srchlen);
 
-
 #define	MAGIC		0xef		/* magic # on accounting info */
-#define RMAGIC		0x5555		/* magic # on range info */
 
 /*
  * nextf[i] is the pointer to the next free block of size 2^(i+3).  The



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905231251.x4NCpTxb085523>