| 1069 | } |
| 1070 | |
| 1071 | static void initLog() |
| 1072 | { |
| 1073 | static const char* sInitString = " --- INIT MEMORY LOG (ACTION): (FILE) (LINE) (SIZE) (ALLOCNUMBER) ---\r\n"; |
| 1074 | |
| 1075 | FileStream fws; |
| 1076 | fws.open(gLogFilename, Torque::FS::File::Write); |
| 1077 | fws.write(dStrlen(sInitString), sInitString); |
| 1078 | fws.close(); |
| 1079 | } |
| 1080 | |
| 1081 | #if !defined(TORQUE_DISABLE_MEMORY_MANAGER) |
| 1082 | static void logAlloc(const AllocatedHeader* hdr, S32 memSize) |
no test coverage detected