~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to drizzled/signal_handler.cc

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
      if (begin && end)
183
183
      {
184
184
        begin++;
185
 
        *end= '\0';
 
185
        *end= NULL;
186
186
 
187
187
        int status;
188
188
        char *ret = abi::__cxa_demangle(begin, function, &sz, &status);
194
194
        {
195
195
          std::strncpy(function, begin, sz);
196
196
          std::strncat(function, "()", sz);
197
 
          function[sz-1] = '\0';
 
197
          function[sz-1] = NULL;
198
198
        }
199
199
        std::cerr << function << std::endl;
200
200
      }