6 /*===========================================================================*
8 *===========================================================================*/
9 PUBLIC
int vm_exec_newmem(endpoint_t ep
, struct exec_newmem
*args
,
10 int argssize
, char **ret_stack_top
, int *ret_flags
)
16 m
.VMEN_ARGSPTR
= (void *) args
;
17 m
.VMEN_ARGSSIZE
= argssize
;
19 result
= _taskcall(VM_PROC_NR
, VM_EXEC_NEWMEM
, &m
);
21 *ret_stack_top
= m
.VMEN_STACK_TOP
;
22 *ret_flags
= m
.VMEN_FLAGS
;