Changeset 49d2b5 in git


Ignore:
Timestamp:
Sep 18, 2014, 9:15:57 PM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
c4e3190c68044083d3437866d1695d9e714d52b5
Parents:
77686dd2830091fbc313b3b6797af88bd9950a50
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-18 21:15:57+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-23 20:08:04+02:00
Message:
Correct detection of backtrace in omalloc's configure
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • .gdbinit

    r77686d r49d2b5  
    11break dErrorBreak
    22break omReportError
     3break dPolyReportError
     4
    35
    46
  • libpolys/polys/pDebug.cc

    r77686d r49d2b5  
    4949  va_start(ap, fmt);
    5050
    51   fprintf(stderr, "\n// ***dPolyError: ");
     51  fprintf(stderr, "\n// ***dPolyReportError: ");
    5252  vfprintf(stderr, fmt, ap);
    5353  fprintf(stderr, "\n occured at\n");
  • omalloc/configure.ac

    r77686d r49d2b5  
    485485#include <stdlib.h>
    486486#include "omGetBackTrace.c"
    487 int test_backtrace()
    488 {
    489   void* bt;
    490   int i = omGetBackTrace(&bt, 0, 10);
     487int test_backtrace0()
     488{
     489  void* bt @<:@ 10 @:>@ ;
     490  int i = omGetBackTrace(bt, 0, 10);
    491491  return i;
    492492}
     493int test_backtrace(){ return test_backtrace0(); }
    493494int main()
    494495{
     
    518519#include "omReturn.h"
    519520#include "omStructs.h"
    520 #include "omGetBackTrace.h"
     521/* #include "omGetBackTrace.h" */
    521522#include "omGetBackTrace.c"
    522523#include "omRet2Info.c"
Note: See TracChangeset for help on using the changeset viewer.