| 25 | |
| 26 | |
| 27 | int main(int argc, char * argv[]) |
| 28 | { |
| 29 | read_args(argc, argv); |
| 30 | |
| 31 | SetResources(options.memory_mb_, options.num_threads_); |
| 32 | |
| 33 | DDSInfo info; |
| 34 | GetDDSInfo(&info); |
| 35 | cout << info.systemString << endl; |
| 36 | |
| 37 | realMain(argc, argv); |
| 38 | |
| 39 | #ifdef DDS_SCHEDULER |
| 40 | scheduler.PrintTiming(); |
| 41 | #endif |
| 42 | |
| 43 | FreeMemory(); |
| 44 | |
| 45 | exit(0); |
| 46 | } |
| 47 |
nothing calls this directly
no test coverage detected