pintos: Avoid apparent name collision in definition of SIGALRM subroutine.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 9 Feb 2016 04:48:37 +0000 (20:48 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 9 Feb 2016 04:48:37 +0000 (20:48 -0800)
commitb54a4c014b52859a287addb60ee23994ae303423
tree9a4bd2cc4cb0b8e3f12f66ebaa81a65d6657a44e
parent1ffb4b2e2cb2a014b725ce15c12c1e1e9829ca1c
pintos: Avoid apparent name collision in definition of SIGALRM subroutine.

Without this patch, modern versions of Perl issue the following warnings:

    Prototype mismatch: sub main::SIGVTALRM () vs none at
    .../src/utils/pintos line 188.
    Constant subroutine SIGVTALRM redefined at
    .../src/utils/pintos line 180.

Changing the name of the function avoids the warning.

Thanks to Geoffrey Knopf for reporting this problem.
src/utils/pintos