* @brief Unlock the file descriptor table mutex * * @note This function releases the lock acquired by dfs_file_lock(). * Should be called in the same context as the corresponding lock. * Should not be called from interrupt service routines. */
| 218 | * Should not be called from interrupt service routines. |
| 219 | */ |
| 220 | void dfs_file_unlock(void) |
| 221 | { |
| 222 | rt_mutex_release(&fdlock); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * this function will initialize device file system. |
no test coverage detected