~ubuntu-branches/ubuntu/raring/boost-build/raring

« back to all changes in this revision

Viewing changes to jam_src/boehm_gc/include/leak_detector.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-08-06 00:38:31 UTC
  • mfrom: (4.1.1 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080806003831-zr65893244swds0b
Tags: 2.0-m12-2
* debian/rules: Do not install /etc/user-config.jam.
* debian/site-config.jam: New.  Install into /etc instead of empty
  example.  Closes: #493323.

* debian/control: Update homepage.  Update description.  Closes:
  #493510.  Update Standards-Version to 3.8.0; no changes.

* debian/compat: New.  Set compat level to 7.
* debian/rules: Remove DH_COMPAT setting.
* debian/control: Change debhelper build-dep to version >= 7.

* debian/control: Remove docbook-to-man, bison from build-deps.

* debian/rules: Clean up upstream source by removing debian/conffiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#define GC_DEBUG
 
2
#include "gc.h"
 
3
#define malloc(n) GC_MALLOC(n)
 
4
#define calloc(m,n) GC_MALLOC((m)*(n))
 
5
#define free(p) GC_FREE(p)
 
6
#define realloc(p,n) GC_REALLOC((p),(n))
 
7
#undef strdup
 
8
#define strdup(s) GC_STRDUP((s))
 
9
#define CHECK_LEAKS() GC_gcollect()