Interface __make64

Inline function

SpaceUser/kernel
ContextSync/async/rt-irq
May blockNo
SPLAny
Dynamic memoryNo

#include <SYS/TYPES.H>

static __finline__ __u64 __make64(__u32 __lo, __u32 __hi);

Description

This function converts two 32-bit values to a 64-bit value. It is equivalent to (__u64)__hi << 32 | __lo, but architecture-specific optimizations may be used.

Arguments

Returns

64-bit number composed of __hi and __lo.

See also

__make64hi