[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    btopr(9F) manual page Table of Contents

Name

btopr - convert size in bytes to size in pages (round up)

Synopsis


#include <sys/ddi.h>

unsigned long btopr(unsigned long numbytes);

Interface Level

Architecture independent level 1 (DDI/DKI).

Arguments

numbytes
Number of bytes.

Description

btopr() returns the number of memory pages contained in the specified number of bytes memory, rounded up to the next whole page. For example, if the page size is 2048, then btopr(4096) returns 2, and btopr(4097) returns 3.

Return Values

The return value is always the number of pages. There are no invalid input values, and therefore no error return values.

Context

btopr() can be called from user or interrupt context.

See Also

btop(9F) , ddi_btopr(9F) , ptob(9F)


Table of Contents