FatFS
Mutex
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
Mutex
Mutex variable
Syntax
Show:
Summary
Declaration
from
ffsystem.c:66
static
SemaphoreHandle_t
Mutex
[
FF_VOLUMES
+
1
]
;
Examples
References
from
examples
Code
Location
Referrer
static
SemaphoreHandle_t
Mutex
[
FF_VOLUMES
+
1
]
;
/* Table of mutex handle */
ffsystem.c:66
Mutex
[
vol
]
=
xSemaphoreCreateMutex
(
)
;
ffsystem.c:105
ff_mutex_create()
return
(
int
)
(
Mutex
[
vol
]
!=
NULL
)
;
ffsystem.c:106
ff_mutex_create()
vSemaphoreDelete
(
Mutex
[
vol
]
)
;
ffsystem.c:141
ff_mutex_delete()
return
(
int
)
(
xSemaphoreTake
(
Mutex
[
vol
]
,
FF_FS_TIMEOUT
)
==
pdTRUE
)
;
ffsystem.c:174
ff_mutex_take()
xSemaphoreGive
(
Mutex
[
vol
]
)
;
ffsystem.c:204
ff_mutex_give()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
Mutex
is read by 4 functions:
All items filtered out
Mutex
ff_mutex_create()
ff_mutex_delete()
ff_mutex_take()
ff_mutex_give()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out