Query: bzero
OS: opensolaris
Section: 9f
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
bzero(9F) Kernel Functions for Drivers bzero(9F)NAMEbzero - clear memory for a given number of bytesSYNOPSIS#include <sys/types.h> #include <sys/ddi.h> void bzero(void *addr, size_t bytes);INTERFACE LEVELArchitecture independent level 1 (DDI/DKI).PARAMETERSaddr Starting virtual address of memory to be cleared. bytes The number of bytes to clear starting at addr.DESCRIPTIONThe bzero() function clears a contiguous portion of memory by filling it with zeros.CONTEXTThe bzero() function can be called from user, interrupt, or kernel context.SEE ALSObcopy(9F), clrbuf(9F), kmem_zalloc(9F) Writing Device DriversWARNINGSThe address range specified must be within the kernel space. No range checking is done. If an address outside of the kernel space is selected, the driver may corrupt the system in an unpredictable way. SunOS 5.11 16 Jan 2006 bzero(9F)
Related Man Pages |
---|
bcopy(3c) - opensolaris |
bstring(3c) - opensolaris |
bzero(3c) - opensolaris |
bcopy(9f) - opensolaris |
bstring(3c) - sunos |
Similar Topics in the Unix Linux Community |
---|
bzero in socket |
C bzero() to memset() issue |