| 765 | } |
| 766 | |
| 767 | static void |
| 768 | removeStaleSharedAreaFile() |
| 769 | { |
| 770 | ostringstream o; |
| 771 | |
| 772 | o << flags.tmpDir |
| 773 | << "/dmtcpSharedArea." << compId << "." << std::hex << curTimeStamp; |
| 774 | JTRACE("Removing sharedArea file.") (o.str()); |
| 775 | unlink(o.str().c_str()); |
| 776 | } |
| 777 | |
| 778 | static void |
| 779 | preExitCleanup() |
no test coverage detected