1. NAME

atomic_or_long - OR of two long integers

2. SYNOPSIS

void atomic_or_long(unsigned long *  v1 , unsigned long  v2 );

3. ARGUMENTS

v1
    pointer to type unsigned long

v2
    pointer to type unsigned long

4. DESCRIPTION

Atomically ORs v1 and v2 Returns the result of the OR

5. COPYRIGHT