Squashed commit of the following:

sched/mqueue:  Rename all private static functions for use the nxmq_ vs. mq_ naming.

    sched/mqueue:  Rename all OS internal functions declared in sched/mqueue/mqueue.h to begin with nxmq_ vs. mq_.  The mq_ prefix is reserved for standard application interfaces.
This commit is contained in:
Gregory Nutt
2017-10-09 09:06:46 -06:00
parent 01a4060a1b
commit e7c52bac60
25 changed files with 112 additions and 112 deletions
+2 -2
View File
@@ -649,10 +649,10 @@ void os_start(void)
/* Initialize the named message queue facility (if in link) */
#ifdef CONFIG_HAVE_WEAKFUNCTIONS
if (mq_initialize != NULL)
if (nxmq_initialize != NULL)
#endif
{
mq_initialize();
nxmq_initialize();
}
#endif