int depth UNUSED_PARAM

1.3k Views Asked by At
static FAST_FUNC int fileAction(const char *pathname,
    struct stat *sb UNUSED_PARAM,
    void *modname_to_match,
    int depth UNUSED_PARAM){...}

what does "int depth UNUSED_PARAM" mean ?

1

There are 1 best solutions below

5
On BEST ANSWER

From include/platform.h in Busybox-1.18.3:

#define UNUSED_PARAM __attribute__ ((__unused__))

And from the GCC documentation:

unused
This attribute, attached to a variable, means that the variable is meant to be possibly unused. GCC will not produce a warning for this variable.

So, it is just a way to tell both the human programmers and the compiler that the variable is not necessarily used. Otherwise, the compiler may warn you about an unused variable.

Presumably, fileAction requires the depth parameter to be compatible with a function pointer type or other API constraints but fileAction doesn't actually use the parameter.