Petar Andrić

Results 2 comments of Petar Andrić

Until someone more knowledgeable answers, maybe this can help... On my system, there is a difference between `pthread_create()` and `fork()`: ```bash $ strace -f -e trace=clone,clone3,fork,vfork ./fork clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fa6a81d6a10)...

Now that I understand the internals of the library a bit better, I can appreciate what @en4bz meant by his comment above. In short, if cloning with a new (empty)...