I noticed that on a single threaded application, SDL still spawns some threads on initialization. It’s usually not of my concern by I noticed cURL requires its initialization to be done before any thread creation for thread-safety. Can they generally be ignored [for cURL initialization] or not? [Also, are they just a sign of using an external library etc.?]
I noticed that on a single threaded application, SDL still spawns some threads on
Share
grepping the source, it looks like the audio subsystem can utilize threading on most platforms, as well as the event subsystem on some platforms (mostly X11 it seems).