Debug::Flags - set PL_debug flags at runtime


Debug-Flags documentation Contained in the Debug-Flags distribution.

Index


Code Index:

NAME

Top

Debug::Flags - set PL_debug flags at runtime

SYNOPSIS

Top

  use strict;
  use Debug::Flags;
  Debug::Flags::set_flags(0x2);

  .. do something

DESCRIPTION

Top

This module turns on the -D flags described in perlrun in runtime, if you have a debugging perl.

AUTHORS

Top

Chia-liang Kao <clkao@clkao.org>

COPYRIGHT

Top


Debug-Flags documentation Contained in the Debug-Flags distribution.

package Debug::Flags;

use 5.008;

use strict;
use warnings;

use Carp;
use XSLoader;
use Scalar::Util;
use Scope::Guard;

our $VERSION = '0.26';

XSLoader::load 'Debug::Flags', $VERSION;

1;