Blame gdb/target-dcache.h

Packit Service 706eca
/* Copyright (C) 1992-2018 Free Software Foundation, Inc.
Packit Service 706eca
Packit Service 706eca
   This file is part of GDB.
Packit Service 706eca
Packit Service 706eca
   This program is free software; you can redistribute it and/or modify
Packit Service 706eca
   it under the terms of the GNU General Public License as published by
Packit Service 706eca
   the Free Software Foundation; either version 3 of the License, or
Packit Service 706eca
   (at your option) any later version.
Packit Service 706eca
Packit Service 706eca
   This program is distributed in the hope that it will be useful,
Packit Service 706eca
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 706eca
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 706eca
   GNU General Public License for more details.
Packit Service 706eca
Packit Service 706eca
   You should have received a copy of the GNU General Public License
Packit Service 706eca
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit Service 706eca
Packit Service 706eca
#ifndef TARGET_DCACHE_H
Packit Service 706eca
#define TARGET_DCACHE_H
Packit Service 706eca
Packit Service 706eca
#include "dcache.h"
Packit Service 706eca
Packit Service 706eca
extern void target_dcache_invalidate (void);
Packit Service 706eca
Packit Service 706eca
extern DCACHE *target_dcache_get (void);
Packit Service 706eca
Packit Service 706eca
extern DCACHE *target_dcache_get_or_init (void);
Packit Service 706eca
Packit Service 706eca
extern int target_dcache_init_p (void);
Packit Service 706eca
Packit Service 706eca
extern int stack_cache_enabled_p (void);
Packit Service 706eca
Packit Service 706eca
extern int code_cache_enabled_p (void);
Packit Service 706eca
Packit Service 706eca
#endif /* TARGET_DCACHE_H */