* Read the modification time of the file pointed by * @param filePath * @return file modification time */
| 26 | * @return file modification time |
| 27 | */ |
| 28 | long readFileModificationTime(char* filePath) { |
| 29 | struct stat attrib = {0x0}; |
| 30 | stat(filePath, &attrib); |
| 31 | return attrib.st_ctime; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Monitors whether the application binary has changed since the process was started. In such case the application |
no test coverage detected