Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: warnings from API calls on XS

by Roger (Parson)
on May 16, 2005 at 13:21 UTC ( [id://457442]=note: print w/replies, xml ) Need Help??


in reply to warnings from API calls on XS

I suggest to write a wrapper function, called say, Bar(), that calls your XV function, say, XV_bar, by assigning the return value of XV_bar to a temporary variable:

package MyBar; ... sub Bar { my $val = XV_bar(@_); return $val; } ... # do the XS imports... # and your code that calls the bar # Foo.pl use strict; use warnings; use MyBar; my $n = 1 + MyBar::Bar(...); # ^ warning will be generated here, not in your module, Bar.pm.

If the return value is not numeric, your calling code will correctly produce the warning at the calling code, not your module. Also if your calling code does not use warnings, then it will not print any warning messages at all.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://457442]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-26 03:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found