* @brief Unlock an address space after thread-safe operations * * @param[in,out] aspace Pointer to the address space structure to be unlocked * * @return Always returns 0 indicating success * * @note Must be called after dfs_aspace_lock() to release the lock * @see dfs_aspace_lock() */
| 1198 | * @see dfs_aspace_lock() |
| 1199 | */ |
| 1200 | static int dfs_aspace_unlock(struct dfs_aspace *aspace) |
| 1201 | { |
| 1202 | rt_mutex_release(&aspace->lock); |
| 1203 | return 0; |
| 1204 | } |
| 1205 | |
| 1206 | /** |
| 1207 | * @brief Insert a page into the address space's page cache |
no test coverage detected