mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
exec: Create include for target_page_size()
That is the only function that we need from exec.c, and having to include the whole sysemu.h for this. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> --- /me leans to be less sloppy with copyright notices thanks Dave
This commit is contained in:
parent
68ba3b0743
commit
51180423a2
6 changed files with 23 additions and 1 deletions
19
include/exec/target_page.h
Normal file
19
include/exec/target_page.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* Target page sizes and friends for non target files
|
||||
*
|
||||
* Copyright (c) 2017 Red Hat Inc
|
||||
*
|
||||
* Authors:
|
||||
* David Alan Gilbert <dgilbert@redhat.com>
|
||||
* Juan Quintela <quintela@redhat.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
|
||||
#ifndef EXEC_TARGET_PAGE_H
|
||||
#define EXEC_TARGET_PAGE_H
|
||||
|
||||
size_t qemu_target_page_size(void);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue