Search Results

10
votes

How can I catch and handle a signal in Perl?

Use the %SIG hash to install signal handlers. Example: $SIG{INT} = 'SigIntHandler'; Where SigIntHandler is a sub that you write to be called when an interrupt is caught. …
-2
votes

How can I pre-allocate a string in Perl?

Yes, pre-extending strings that you know will grow is a good idea. You can use the 'x' operator to do this. For example, to preallocate 1000 spaces: $s = " " x 1000: …
1
vote

*** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 ***

This looks like an error internal to Perl. The "double free or corruption" refers to memory being freed twice, or corrupted. Perl manages memory for you, so this should never happen if Perl is wo …