Monks, I have spent the morning trying to upgrade some working code from 5.8.9 to the latest version of perl (5.22/5.24) and I've hit a mini brick wall. The code is mainly for windows, but it also works under Linux.

The code turns on the perl debugger in a separate thread at the XS level, this allows the debugger to be used to step through running perl code in that separate thread. It's hard to explain, but works well:)

It seems (given my limited understanding) that the correct way to do this in later perl's is to use the Perl_init_debugger function, but it doesn't seem to be available? Using the raw source code for this function works well but that would mean that my code would only works on that specific version of perl, something that I want to avoid...

An example of a module that uses this function is Enbugger:

https://metacpan.org/source/JJORE/Enbugger-2.016/Enbugger.xs

However, this module doesn't actually compile under ActiveState 5.22 or Stawberry 5.24

Enbugger.o:Enbugger.c:(.text+0x852): undefined reference to `__imp_Perl_init_debugger'

Does anyone know the 'correct' way to use this function?

Any hints would be gratefully appreciated.


In reply to How to use Perl_init_debugger in XS code? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.