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)
commit8b39127d9437709ab55ad1ed7ac4fb65245fc57b
treee9075f34365afb2378c33ede3e7b3a1e2e01870b
parentfd2a5afa946474ba0839de0e9da238dbaecbd6a5
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