1. NAME

kcalloc - allocate memory for an array. The memory is set to zero.

2. SYNOPSIS

void * kcalloc(size_t  n , size_t  size , gfp_t  flags );

3. ARGUMENTS

n
    number of elements.

size
    element size.

flags
    the type of memory to allocate (see kmalloc).

4. COPYRIGHT