Changed phys_zero to phys_fill, which accepts a 4-byte argument saying what

to fill with. Changed prototype and call to match.
This commit is contained in:
Ben Gras
2005-07-18 12:18:16 +00:00
parent 5cd673c5ba
commit 42e6d20afe
3 changed files with 10 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ PUBLIC int do_memset(m_ptr)
register message *m_ptr;
{
/* Handle sys_memset(). */
phys_zero((phys_bytes) m_ptr->MEM_PTR, (phys_bytes) m_ptr->MEM_COUNT);
phys_fill((phys_bytes) m_ptr->MEM_PTR, (phys_bytes) m_ptr->MEM_COUNT, 0);
return(OK);
}