CPM0 frl-plugin:perlscript: ERROR: 'times' trapped by operation mask at /usr/lib64/perl5/B.pm line 183.
Hello ,
When "use DateTime;" library is included in perl file ,getting the error as
"CPM0 frl-plugin:perlscript: ERROR: 'times' trapped by operation mask at /usr/lib64/perl5/B.pm line 183."
Could someone provide some inputs on the same.
Also to which tag does this opcode 'times' belong to ?
example: fork,wait, waitpid will belong to :subprocess
Regards
Kavya
blogs.perl.org tends to be a blogging platform, not a help platform. You might try over on Perl Monks.
You might get better response there if you post something more informative than "I get this error. Why?" The Perl Monks node How do I ask a question effectively? may help.
From what you have given, I assume your code is running in a Safe compartment that disallows the
times
opcode. If that is true, you will need to work with the person who set up the compartment and get it modified, or find another way to do whatever it is you are trying to do.