#define LOS_ERRNO_MUX_UNAVAILABLE   LOS_ERRNO_OS_ERROR(LOS_MOD_MUX, 0x04)

Mutex error code: The mutex fails to be locked in non-blocking mode because it is locked by another thread.

Value: 0x02001d04

Solution: Lock the mutex after it is unlocked by the thread that owns it, or set a waiting time.

在文件los_mux.h102行定义。