The fundamental asymmetry is that ISO C requires that wide characters have fixed width (same for all characters), and that the encoding does not have shift states. In contrast, multibyte encoding is dependent on the locale and may have varying character width and also shift states.
All the four functions have internal state kept between calls (mbstowcs and wcstombs also have to because they convert only a specified number of bytes as opposed to full strings that would otherwise finish in the initial shift state).
There is a subtle difference of what the internal state consists of in case of the string conversions. For mbstowcs, a whole number of wide characters is converted in a single call. This is because wide characters have a fixed width, and also because the n parameter of the call is specified in characters, not bytes. In contrast, for wcstombs the n parameter is specified in bytes, not in multi-byte characters. Consequently, the state kept for wcstombs has to include not only the shift state, but also the remainder of a partially output multibyte character. Because the state is thus multi-part, operations (load and store) on it are not going to be atomic on a typical architecture without additional locking.
At this point it is important to remind ourselves that "thread safety" has a pretty technical meaning in POSIX, namely that parallel invocations are logically serializable. It does not mean that parallel usage is necessarily very useful. As all the four functions keep internal state, it is hard to imagine a caller who processes a single linear string (at a time) left to right, but spreading the calls across multiple threads. This is witnessed by the introduction of mbrtowc, wcrtomb, mbsrtowcs and wcstombs in Amendment 1 to the ISO C 89/90, with the r flag standing specifically for "reentrant".
I cannot exactly explain why having an "atomically accessible" internal state should make it easier to make the respective call easier to implement in a thread safe way (because there sometimes have to be multiple accesses, load and store, during a single call), but maybe it is because the burden of additional locking (and reloading) is only imposed in the rarely visited code branch where an actual shift state is taking place.
There is also another catch to explain. A concurrent thread may call setlocale changing the character encoding (LC_CTYPE) category of the locale. ISO C standard specifies that such an action causes the current state (and, by the way, even a state well captured using wcrtomb) to become undefined. This is because the shift states of different locales may not map to each other in useful or specified ways. Although this is a threaded scenario that has the potential of breaking even the "reentrant" family of functions, it does not necessarily pose an obstacle to a formally thread safe implementation because the locale setting can be cached throughout each call.
rin their names, which are different from the ones in the question. – R.. Jan 24 '11 at 19:27wcrtombis thread-safe when a non-NULL ps is passed to it. Presumably when ps == NULL then wcrtomb is equivalent to wctomb. – David Heffernan Jan 24 '11 at 19:36wctombdoesn't need to be thread-safe because you can callwcrtombif you want thread-safety. Formbtowcthere is norversion so it has to be thread-safe. All pure guess work mind you!! – David Heffernan Jan 24 '11 at 19:58