Am I right, that thread usage is disabled for C++?
I tried:
int clone_flags = CLONE_VM | CLONE_FS | CLONE_FILES;
pid_t pid1 = clone(threadFunc, stack1 + 123456, clone_flags, (int*)0);
clone returned -1. Does it mean, that threads are disabled?
I suppose that possibility of thread creation is intresting for compare solutions by time.