About cuda calls

Here are 2 sentences from official document.
“Any CUDA call to stream-0 blocks until previous calls complete.
No CUDA calls can be overlapped with a stream-0 call.”
What does that means? What are CUDA calls? Is there any differences between stream0 and user created stream? Does the first sentences indicts that functions in stream0 are all blocking, including kernel call?