Home
last modified time | relevance | path

Searched refs:Mutex (Results 1 – 1 of 1) sorted by relevance

/fatfs-latest/option/
Dffsystem.c47 static HANDLE Mutex[FF_VOLUMES + 1]; /* Table of mutex handle */ variable
52 static mtxid Mutex[FF_VOLUMES + 1]; /* Table of mutex ID */ variable
56 static OS_EVENT *Mutex[FF_VOLUMES + 1]; /* Table of mutex pinter */ variable
61 static SemaphoreHandle_t Mutex[FF_VOLUMES + 1]; /* Table of mutex handle */ variable
65 static osMutexId Mutex[FF_VOLUMES + 1]; /* Table of mutex ID */ variable
84 Mutex[vol] = CreateMutex(NULL, FALSE, NULL); in ff_mutex_create()
85 return (int)(Mutex[vol] != INVALID_HANDLE_VALUE); in ff_mutex_create()
90 Mutex[vol] = acre_mtx(&cmtx); in ff_mutex_create()
91 return (int)(Mutex[vol] > 0); in ff_mutex_create()
96 Mutex[vol] = OSMutexCreate(0, &err); in ff_mutex_create()
[all …]