difference between portENTER_CRITICAL () and

bjarkegelsted wrote on Tuesday, June 09, 2009:

What is the difference between portENTER_CRITICAL() and taskENTER_CRITICAL()?

rtel wrote on Tuesday, June 09, 2009:

There isn’t any difference.  portENTER_CRITICAL() is part of the port layer and is not intended for application use.  taskENTER_CRITICAL() is part of the API and is intended for application use, although one just calls the other so in reality it makes no difference.

Regards.

bjarkegelsted wrote on Tuesday, June 09, 2009:

thank you