File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
umf_memory_provider_ops_t * umfFileMemoryProviderOps (void ) {
24
24
// not supported
25
+ LOG_ERR ("File memory provider is disabled!" );
25
26
return NULL ;
26
27
}
27
28
28
29
umf_result_t umfFileMemoryProviderParamsCreate (
29
30
umf_file_memory_provider_params_handle_t * hParams , const char * path ) {
30
31
(void )hParams ;
31
32
(void )path ;
33
+ LOG_ERR ("File memory provider is disabled!" );
32
34
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
33
35
}
34
36
35
37
umf_result_t umfFileMemoryProviderParamsDestroy (
36
38
umf_file_memory_provider_params_handle_t hParams ) {
37
39
(void )hParams ;
40
+ LOG_ERR ("File memory provider is disabled!" );
38
41
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
39
42
}
40
43
41
44
umf_result_t umfFileMemoryProviderParamsSetPath (
42
45
umf_file_memory_provider_params_handle_t hParams , const char * path ) {
43
46
(void )hParams ;
44
47
(void )path ;
48
+ LOG_ERR ("File memory provider is disabled!" );
45
49
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
46
50
}
47
51
48
52
umf_result_t umfFileMemoryProviderParamsSetProtection (
49
53
umf_file_memory_provider_params_handle_t hParams , unsigned protection ) {
50
54
(void )hParams ;
51
55
(void )protection ;
56
+ LOG_ERR ("File memory provider is disabled!" );
52
57
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
53
58
}
54
59
@@ -57,6 +62,7 @@ umf_result_t umfFileMemoryProviderParamsSetVisibility(
57
62
umf_memory_visibility_t visibility ) {
58
63
(void )hParams ;
59
64
(void )visibility ;
65
+ LOG_ERR ("File memory provider is disabled!" );
60
66
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
61
67
}
62
68
You can’t perform that action at this time.
0 commit comments