Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How does a browser handle creation of new tabs. Does it fork or create a new thread? Can you point me how I choose between creating a new thread and a child process.

share|improve this question
@Gray advice taken. – spartacus May 17 '12 at 20:48

1 Answer

Some modern browser these days create separate processes for new tabs. The reason is that if some site (tab) contains malicious code and is for example frozen the rest of the browsed sites can be still seen.

If you used for example Chrome and you would be on Windows, you could try to kill some chrome.exe processes and you will see only one tab will die. However, in case of chrome it is not completely 1 to 1 (tabs to processes). Some processes are vital for running the browser as is (if you kill them the whole browser will die), so be aware of that if you are gonna to try. :)

Note that almost all browser now have separate processes for plugins (3rd party plugins written e.g. using Netscape API). The reason is the same as with tabs (and is even more understandable).

To find answer for your second question, look for example here: http://jayant7k.blogspot.com/2010/01/for.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.