[arch][x86] stub out the cache routines

This commit is contained in:
Travis Geiselbrecht
2024-05-09 19:54:54 -07:00
parent 339ff8995a
commit 60bee01621

View File

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2009 Corey Tabaka
* Copyright (c) 2024 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
@@ -10,3 +11,13 @@
/* nothing to do to sync I & D cache on x86 */
void arch_sync_cache_range(addr_t start, size_t len) {
}
/* for the moment, no cache flushes here either */
void arch_clean_cache_range(addr_t start, size_t len) {
}
void arch_clean_invalidate_cache_range(addr_t start, size_t len) {
}
void arch_invalidate_cache_range(addr_t start, size_t len) {
}