zephyr/kernel/microkernel/channel
Dan Kalowsky fe1226713c Renaming InitPipe to _pipe_init
Updating micro kernel functions to follow a consistent naming convention.
Part of that process is the removal of camelCase naming conventions for the
preferred_underscore_method.

Change accomplished with the following script:

#!/bin/bash
echo "Searching for ${1} to replace with ${2}"

echo "Checking C, CPP, H, HPP, and s files..."
find . -type f \( -iname \*.[ch] -o -iname \*.[ch]pp -o -iname \*.s \) \
       -not \( -path host/src/genIdt -prune \) \
       -not \( -path host/src/gen_tables -prune \) \
       -print | xargs sed -i "s/"${1}"/"${2}"/g"

echo "Checking KCONF, LST, and PY files..."
find . -type f \( -iname \*.lst -o -iname \*.kconf -o -iname \*.py \) \
       -not \( -path host/src/genIdt -prune \) \
       -not \( -path host/src/gen_tables -prune \) \
       -print | xargs sed -i "s/"${1}"/"${2}"/g"

Change-Id: I4a3755e77038eccbd31f8247cb230052dd3edccf
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
2016-02-05 20:13:51 -05:00
..
ch_addit.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
ch_buff.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
ch_buffm.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
InitChan.c Renaming InitPipe to _pipe_init 2016-02-05 20:13:51 -05:00
K_Ch_Mvd.c Remove private routine declarations from k_chstr.h 2016-02-05 20:13:42 -05:00
K_Ch_RO.c Renaming K_mvdreq to _k_movedata_request 2016-02-05 20:13:48 -05:00
K_Ch_WO.c Renaming K_mvdreq to _k_movedata_request 2016-02-05 20:13:48 -05:00
K_Ch_WR.c Renaming K_mvdreq to _k_movedata_request 2016-02-05 20:13:48 -05:00
K_ChGAck.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
K_ChGReq.c Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00
K_ChGRpl.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
K_ChGTmo.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
K_ChPAck.c Renaming K_signals to _k_sem_signal 2016-02-05 20:13:47 -05:00
K_ChPReq.c Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00
K_ChProc.c Remove private routine declarations from k_chstr.h 2016-02-05 20:13:42 -05:00
K_ChPRpl.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
K_ChPTmo.c Use <> for include files instead of "" 2016-02-05 20:13:41 -05:00
KS_Chan.c Remove references to host server channels 2016-02-05 20:13:42 -05:00
KS_ChGet.c Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00
KS_ChPtA.c Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00
KS_ChPut.c Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00