What is meaning of 'Blocking' in Firebug Net Panel?

I'm using Firebug 1.5.2 and while testing a site before production release i can see a huge amount of time consumed by 'Blocking' parts of the requests.

What exactly does the 'Blocking' mean?


"Blocking" previously (earlier versions of FireBug) was called "Queuing". It actually means that request is sitting in queue waiting for available connection. As far as I know number of persistent connections by default is limited in last versions of Firefox to 6, IE8 also 6. Earlier it was only 2. It can be changed by user in browser settings.
Also as I know that while javascript file is loading, all other resources (css, images) are blocked


Blocking is a term used to describe an event that stops other events or code from processing (within the same thread).

For example if you use "blocking" sockets then code after the socket request has been made will not be processed until the request is complete (within the same thread).

Asynchronous activities (non blocking) would simply make the request and let other code run whilst the request happened in the background.

In your situation it basically means that certain parts of firebug / the browser cannot activate until other parts are complete. I.e. it is waiting for an image to download before downloading more.