NAME

coreMsgFlagClr() -- clear the flag in the message.


SYNOPSIS

include "appcore.h"

void coreMsgFlagClr( coreMsg_t* m, unsigned int f )

DESCRIPTION

The coreMsgFlagClr() function clears the flags in the message. Multiple flags may be cleared at the same time.


PARAMETERS

m
	Specifies the pointer to the appCORE message.
f
	Specifies the bits to clear in the message. 

RETURN VALUE

If successful, coreMsgFlagClr() returns 0. If an error occurs, -1 is returned and errno is set to one of the following:

errno ValueCondition
EINVALMessage pointer null.

MULTI-THREAD SAFETY LEVEL

MT-safe.


SEE ALSO

Functions:
coreMsgCreate() coreMsgDup() coreMsgDispatch() coreMsgForward() coreMsgBroadcast() coreMsgFree() coreMsgFlagSet() coreMsgFlagIsSet()