* @brief Lock the page cache global mutex * * @return Always returns 0. */
| 484 | * @return Always returns 0. |
| 485 | */ |
| 486 | static int dfs_pcache_lock(void) |
| 487 | { |
| 488 | rt_mutex_take(&__pcache.lock, RT_WAITING_FOREVER); |
| 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | /** |
| 493 | * @brief Unlock the page cache global mutex |
no test coverage detected