How can I divide the tasks for diffrent cores?
E.g. 4 Cores func1() -> core1
func2() -> core2
func3() -> core3
func4() -> core4
Is there special libary for this? Or do I have to use the old fashioned way of integrating the functions in the main loop ?
( I'm using C++ on Windows)