[Libreoffice-bugs] [Bug 63554] Put every application in different CPU process

bugzilla-daemon at bugs.documentfoundation.org bugzilla-daemon at bugs.documentfoundation.org
Wed Jul 1 13:58:04 UTC 2020


https://bugs.documentfoundation.org/show_bug.cgi?id=63554

--- Comment #7 from Luke Kendall <luke.kendall at gmail.com> ---
I can also add as a Unix programmer since long before threads became a thing,
yes, it is extremely normal in the Linux world to create a new process.

As far as I know it, the two main reasons to create separate threads instead of
separate processes are:
1) They're all working on the same problem and you want t o reduce context
switching time, or
2) You want the threads to communicate a lot, and want to just share memory
instead of using any of the many interprocess communication methods.

Of course, the biggest disadvantage of using threads instead of processes is
that any kind of data structure corruption in one thread is likely to affect
every thread.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20200701/32c98868/attachment-0001.htm>


More information about the Libreoffice-bugs mailing list