C Sqlite源代码读取。F17025、U17032等ID的用途是什么?

C Sqlite源代码读取。F17025、U17032等ID的用途是什么?,c,sqlite,C,Sqlite,在SQLite源代码注释中,我看到了像F17025、U17032等标识符 sqlite3.c: ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. {F17024} If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_t

在SQLite源代码注释中,我看到了像F17025、U17032等标识符

sqlite3.c:

** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
** to enter a mutex. {F17024} If another thread is already within the mutex,
** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
** SQLITE_BUSY. {F17025}  The sqlite3_mutex_try() interface returns SQLITE_OK
** upon successful entry.  {F17026} Mutexes created using
** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread.
** {F17027} In such cases the,

它们是用来干什么的?可能有一些相关的文档?

我想这些是对一些内部文档的引用(想想)。

奇怪的是,我用那个ID搜索了一下,但找不到这样的文档。该项目是开源的,所以它应该是可用的,可能是我使用的关键字不好?或者所有的需求都只是在注释中?我已经找到了一些需求文档:,但我仍然没有看到代码中F17025的定义