| 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 | real_main(argc, argv); |
| 38 | |
| 39 | // Restore normal termination so destructors / atexit handlers run. |
| 40 | exit(0); |
| 41 | } |
nothing calls this directly
no test coverage detected