Deleted Added
full compact
malloc.c (154306) malloc.c (154415)
1/*-
2 * Copyright (C) 2006 Jason Evans <jasone@FreeBSD.org>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 122 unchanged lines hidden (view full) ---

131 (var) = (((var) != (a_qr)) \
132 ? (var)->a_field.qre_prev : NULL))
133
134/******************************************************************************/
135
136#define MALLOC_DEBUG
137
138#include <sys/cdefs.h>
1/*-
2 * Copyright (C) 2006 Jason Evans <jasone@FreeBSD.org>.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 122 unchanged lines hidden (view full) ---

131 (var) = (((var) != (a_qr)) \
132 ? (var)->a_field.qre_prev : NULL))
133
134/******************************************************************************/
135
136#define MALLOC_DEBUG
137
138#include <sys/cdefs.h>
139__FBSDID("$FreeBSD: head/lib/libc/stdlib/malloc.c 154306 2006-01-13 18:38:56Z jasone $");
139__FBSDID("$FreeBSD: head/lib/libc/stdlib/malloc.c 154415 2006-01-16 00:32:46Z marcel $");
140
141#include "libc_private.h"
142#ifdef MALLOC_DEBUG
143# define _LOCK_DEBUG
144#endif
145#include "spinlock.h"
146#include "namespace.h"
147#include <sys/mman.h>

--- 63 unchanged lines hidden (view full) ---

211#ifdef __i386__
212# define QUANTUM_2POW_MIN 4
213# define SIZEOF_PTR 4
214# define USE_BRK
215#endif
216#ifdef __ia64__
217# define QUANTUM_2POW_MIN 4
218# define SIZEOF_PTR 8
140
141#include "libc_private.h"
142#ifdef MALLOC_DEBUG
143# define _LOCK_DEBUG
144#endif
145#include "spinlock.h"
146#include "namespace.h"
147#include <sys/mman.h>

--- 63 unchanged lines hidden (view full) ---

211#ifdef __i386__
212# define QUANTUM_2POW_MIN 4
213# define SIZEOF_PTR 4
214# define USE_BRK
215#endif
216#ifdef __ia64__
217# define QUANTUM_2POW_MIN 4
218# define SIZEOF_PTR 8
219# define NO_TLS
219#endif
220#ifdef __alpha__
221# define QUANTUM_2POW_MIN 4
222# define SIZEOF_PTR 8
223# define NO_TLS
224#endif
225#ifdef __sparc64__
226# define QUANTUM_2POW_MIN 4

--- 4558 unchanged lines hidden ---
220#endif
221#ifdef __alpha__
222# define QUANTUM_2POW_MIN 4
223# define SIZEOF_PTR 8
224# define NO_TLS
225#endif
226#ifdef __sparc64__
227# define QUANTUM_2POW_MIN 4

--- 4558 unchanged lines hidden ---