1. NAME

DECLARE_COMPLETION - declare and initialize a completion structure

2. SYNOPSIS

DECLARE_COMPLETION( work );

3. ARGUMENTS

work
    identifier for the completion structure

4. DESCRIPTION

This macro declares and initializes a completion structure. Generally used for static declarations. You should use the _ONSTACK variant for automatic variables.

5. COPYRIGHT