Yes, Lwt means lightweight threads and Lwt's threads are light. Lwt has a cooperative threading model, only a single lwt thread runs at the same time on a single system thread, until it explictely yields control. It's your duty to make sure your computation eventually yields otherwise other lwt threads may never run.
However Lwt also has a pool of system threads used to execute blocking system calls or to delegate your long running functions so that they dont't block the whole system and prevent other lwt threads from running.
You can find out more about Lwt's model and implementation in this paper (which you can get on the original author's web page, here).