* @brief Library constructor for platforms supporting constructor attribute. * * This function is called when the library is loaded. */
| 85 | * This function is called when the library is loaded. |
| 86 | */ |
| 87 | static void __attribute__ ((constructor)) libInit(void) |
| 88 | { |
| 89 | SetMaxThreads(0); |
| 90 | } |
| 91 | |
| 92 | |
| 93 | /** |
nothing calls this directly
no test coverage detected