Adding arg to windows makefiles. adding trivial params implementation to vman.c.

Copied from Perforce
 Change: 181672
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2013-05-09 15:00:30 +01:00
parent 8b6c35d94f
commit 5acbbfa97e
3 changed files with 11 additions and 2 deletions

View file

@ -52,6 +52,15 @@ Align VMAlign(VM vm)
}
Res VMParamFromArgs(void *params, size_t paramSize, ArgList args)
{
AVER(params != NULL);
AVERT(ArgList, args);
UNUSED(paramSize);
return ResOK;
}
/* VMCreate -- reserve some virtual address space, and create a VM structure */
Res VMCreate(VM *vmReturn, Size size)

View file

@ -19,7 +19,7 @@ MPM = <ring> <mpm> <bt> <protocol> <boot> \
<shield> <vmw3> <table> \
<thw3> <thw3i3> <ss> <ssw3i3mv> <mpsi> <mpsiw3> <ld> <spi3> \
<event> <seg> <sac> <poolmrg> <message> <dbgpool> <dbgpooli> \
<abq> <meter> <cbs> <poolmv2> <splay> <diag>
<abq> <meter> <cbs> <poolmv2> <splay> <diag> <arg>
PLINTH = <mpsliban> <mpsioan>
AMC = <poolamc>
AMS = <poolams> <poolamsi>

View file

@ -20,7 +20,7 @@ MPM = <ring> <mpm> <bt> <protocol> <boot> \
<shield> <vmw3> <table> \
<thw3> <thw3i6> <ss> <ssw3i6mv> <mpsi> <mpsiw3> <ld> <span> \
<event> <seg> <sac> <poolmrg> <message> <dbgpool> <dbgpooli> \
<abq> <meter> <cbs> <poolmv2> <splay> <diag>
<abq> <meter> <cbs> <poolmv2> <splay> <diag> <arg>
PLINTH = <mpsliban> <mpsioan>
AMC = <poolamc>
AMS = <poolams> <poolamsi>