~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/signal_handler.cc

  • Committer: Vijay Samuel
  • Date: 2010-09-10 21:03:37 UTC
  • mto: (1757.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1758.
  • Revision ID: vijay@vijay-20100910210337-rf7c2ymawtqj6tkv
Merge added utf 8 tamil test case suite and test case for creating a database in tamil.

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
      }