Changeset 391

Show
Ignore:
Timestamp:
05/29/07 13:43:55 (1 year ago)
Author:
kindlund
Message:

Debugging destroy operations.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/kindlund-filesystem/lib/HoneyClient/Agent.pm

    r390 r391  
    413413        # if any type of termination signal is received. 
    414414        local $SIG{HUP} = sub { exit; }; 
    415         local $SIG{INT} = sub { exit; }; 
     415        # XXX: Test this. 
     416        #local $SIG{INT} = sub { exit; }; 
     417        local $SIG{INT} = sub { destroy(); exit; }; 
     418 
    416419        local $SIG{QUIT} = sub { exit; }; 
    417420        local $SIG{ABRT} = sub { exit; };