sched/: Make more naming consistent

Rename various functions per the quidelines of https://cwiki.apache.org/confluence/display/NUTTX/Naming+of+OS+Internal+Functions

    nxsem_setprotocol -> nxsem_set_protocol
    nxsem_getprotocol -> nxsem_get_protocol
    nxsem_getvalue -> nxsem_get_value
This commit is contained in:
Gregory Nutt
2020-05-17 07:56:21 -06:00
committed by Alan Carvalho de Assis
parent d938b50969
commit a569006fd8
192 changed files with 288 additions and 288 deletions
+2 -2
View File
@@ -1334,8 +1334,8 @@ int usbmsc_configure(unsigned int nluns, void **handle)
* should not have priority inheritance enabled.
*/
nxsem_setprotocol(&priv->thsynch, SEM_PRIO_NONE);
nxsem_setprotocol(&priv->thwaitsem, SEM_PRIO_NONE);
nxsem_set_protocol(&priv->thsynch, SEM_PRIO_NONE);
nxsem_set_protocol(&priv->thwaitsem, SEM_PRIO_NONE);
sq_init(&priv->wrreqlist);
priv->nluns = nluns;