test public

Dependencies:   HttpServer_snapshot_mbed-os

Committer:
anhtran
Date:
Fri Oct 18 03:09:43 2019 +0000
Revision:
0:e9fd5575b10e
abc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
anhtran 0:e9fd5575b10e 1 /* Dcache Control Library
anhtran 0:e9fd5575b10e 2 * Copyright (C) 2017 dkato
anhtran 0:e9fd5575b10e 3 *
anhtran 0:e9fd5575b10e 4 * Licensed under the Apache License, Version 2.0 (the "License");
anhtran 0:e9fd5575b10e 5 * you may not use this file except in compliance with the License.
anhtran 0:e9fd5575b10e 6 * You may obtain a copy of the License at
anhtran 0:e9fd5575b10e 7 *
anhtran 0:e9fd5575b10e 8 * http://www.apache.org/licenses/LICENSE-2.0
anhtran 0:e9fd5575b10e 9 *
anhtran 0:e9fd5575b10e 10 * Unless required by applicable law or agreed to in writing, software
anhtran 0:e9fd5575b10e 11 * distributed under the License is distributed on an "AS IS" BASIS,
anhtran 0:e9fd5575b10e 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
anhtran 0:e9fd5575b10e 13 * See the License for the specific language governing permissions and
anhtran 0:e9fd5575b10e 14 * limitations under the License.
anhtran 0:e9fd5575b10e 15 */
anhtran 0:e9fd5575b10e 16
anhtran 0:e9fd5575b10e 17 #ifndef DCACHE_CONTROL_H
anhtran 0:e9fd5575b10e 18 #define DCACHE_CONTROL_H
anhtran 0:e9fd5575b10e 19
anhtran 0:e9fd5575b10e 20 #ifdef __cplusplus
anhtran 0:e9fd5575b10e 21 extern "C" {
anhtran 0:e9fd5575b10e 22 #endif
anhtran 0:e9fd5575b10e 23
anhtran 0:e9fd5575b10e 24 extern void dcache_clean(void * p_buf, uint32_t size);
anhtran 0:e9fd5575b10e 25 extern void dcache_invalid(void * p_buf, uint32_t size);
anhtran 0:e9fd5575b10e 26
anhtran 0:e9fd5575b10e 27 #ifdef __cplusplus
anhtran 0:e9fd5575b10e 28 }
anhtran 0:e9fd5575b10e 29 #endif
anhtran 0:e9fd5575b10e 30
anhtran 0:e9fd5575b10e 31 #endif