2010-02-12 47 views
0

在SQLite的源代碼註釋我看到像F17025,U17032 identificators等讀取Sqlite源代碼。 F17025,U17032這些ID用於什麼?

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, 

它們被用來做什麼?可能有一些相關的文檔?

回答

1

我認爲這些是對某些內部文檔的章節的引用(想想Functional Requirements)。

+0

奇怪的是,我圍繞使用該ID搜索,但無法找到這樣的文件。該項目是開源的,所以它應該可用,可能是我使用錯誤的關鍵字?或者所有要求都只是在評論中? – alex2k8 2010-02-12 14:00:59

+0

我發現了一些需求文檔:http://www.sqlite.org/requirements.html,但我仍然看不到F17025的代碼 – alex2k8 2010-02-12 14:56:03