~ubuntu-branches/ubuntu/precise/glib2.0/precise-updates

« back to all changes in this revision

Viewing changes to glib/gbacktrace.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher, Martin Pitt
  • Date: 2012-01-03 18:16:47 UTC
  • mfrom: (1.59.34)
  • Revision ID: package-import@ubuntu.com-20120103181647-7jsgxz37px0igbna
Tags: 2.31.6-0ubuntu1
* New upstream version
* debian/patches/disable-test-gdbus-hanging.patch:
  - dropped the tests have been fixed in the new version
* debian/libglib2.0-0.postrm.in:
  - restore change dropped by error, don't clean the gsettings mmap on 
    upgrades to avoid having a time where no schemas seems installed which
    leads to applications erroring out
* debian/libglib2.0-0.symbols: 
  - new version update

[ Martin Pitt ]
* debian/control.in: Re-add our Vcs-Bzr:.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 * Inserts a breakpoint instruction into the code.
46
46
 *
47
47
 * On x86 and alpha systems this is implemented as a soft interrupt
48
 
 * and on other architectures it raises a %SIGTRAP signal.
 
48
 * and on other architectures it raises a <literal>SIGTRAP</literal> signal.
49
49
 */
50
50
#if (defined (__i386__) || defined (__x86_64__)) && defined (__GNUC__) && __GNUC__ >= 2
51
51
#  define G_BREAKPOINT()        G_STMT_START{ __asm__ __volatile__ ("int $03"); }G_STMT_END