/* * Copyright 2002-2019 Intel Corporation. * * This software is provided to you as Sample Source Code as defined in the accompanying * End User License Agreement for the Intel(R) Software Development Products ("Agreement") * section 1.L. * * This software and the related documents are provided as is, with no express or implied * warranties, other than those that are expressly stated in the License. */ /*! @file * Injector blocks and injectee restores signal mask * This test verifyes that signal mask was correctly restored after start */ #include "pin.H" #include #include #include using std::cerr; using std::endl; INT32 Usage() { cerr << "This pin tool tests signal mask.\n" "\n"; cerr << KNOB_BASE::StringKnobSummary(); cerr << endl; return -1; } int main(int argc, CHAR *argv[]) { PIN_InitSymbols(); if( PIN_Init(argc,argv) ) { return Usage(); } PIN_StartProgramProbed(); return 0; } /* ===================================================================== */ /* eof */ /* ===================================================================== */