c15abe90f2
a few new callout functions.
165 lines
2.8 KiB
C
165 lines
2.8 KiB
C
/*
|
|
* plex86: run multiple x86 operating systems concurrently
|
|
* Copyright (C) 1999-2003 Kevin P. Lawton
|
|
*
|
|
* host-null.c: host OS specific stubs. These provide a reference for
|
|
* ports of plex86 to various host OSes.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "plex86.h"
|
|
#define IN_HOST_SPACE
|
|
#include "monitor.h"
|
|
|
|
/* Note: for comments on what various functions are expected to do, as
|
|
* well as a reference implemntation, read the 'host-linux.c' file.
|
|
* It's likely the most up-to-date.
|
|
*/
|
|
|
|
|
|
/* OS specific includes here. */
|
|
|
|
|
|
/* Some declarations for the entry points etc here. */
|
|
|
|
|
|
|
|
|
|
monitor_pages_t monitor_pages;
|
|
|
|
#define NULL 0
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
vm_t *vm = NULL;
|
|
|
|
genericModuleInit();
|
|
genericDeviceOpen(vm);
|
|
initMonitor(vm);
|
|
initGuestPhyMem(vm);
|
|
ioctlGeneric(vm, NULL, NULL, 0, 0);
|
|
return(0);
|
|
}
|
|
|
|
void
|
|
hostReservePhyPages(vm_t *vm, Bit32u *hostPhyPages, unsigned nPages)
|
|
{
|
|
}
|
|
|
|
void
|
|
hostUnreservePhyPages(vm_t *vm, Bit32u *hostPhyPages, unsigned nPages)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
unsigned
|
|
hostIdle(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void *
|
|
hostAllocZeroedMem(unsigned long size)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
hostFreeMem(void *ptr)
|
|
{
|
|
}
|
|
|
|
void *
|
|
hostAllocZeroedPage(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
hostFreePage(void *ptr)
|
|
{
|
|
}
|
|
|
|
|
|
unsigned
|
|
hostGetAllocedMemPhyPages(Bit32u *page, int max_pages, void *ptr, unsigned size)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
Bit32u
|
|
hostGetAllocedPagePhyPage(void *ptr)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
hostPrint(char *fmt, ...)
|
|
{
|
|
}
|
|
|
|
|
|
int
|
|
hostConvertPlex86Errno(unsigned ret)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
Bit32u
|
|
hostKernelOffset(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
unsigned
|
|
hostMMapCheck(void *i, void *f)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
hostModuleCountReset(vm_t *vm, void *inode, void *filp)
|
|
{
|
|
}
|
|
|
|
unsigned long
|
|
hostCopyFromUser(void *to, void *from, unsigned long len)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
unsigned long
|
|
hostCopyToUser(void *to, void *from, unsigned long len)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
Bit32u
|
|
hostGetAndPinUserPage(vm_t *vm, Bit32u userAddr, void **osSpecificPtr,
|
|
Bit32u *ppi, Bit32u *kernelAddr)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
hostUnpinUserPage(vm_t *vm, Bit32u userAddr, void *osSpecificPtr,
|
|
Bit32u ppi, Bit32u *kernelAddr, unsigned dirty)
|
|
{
|
|
}
|