Renaming K_deqrpl to _k_fifo_deque_reply

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:

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: Ic3f0816ebc4e7df7bfdb90005d774abd748d14af
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
Dan Kalowsky 2015-04-28 11:35:50 -07:00 committed by Anas Nashif
commit 10aaf5aefa
4 changed files with 6 additions and 6 deletions

View file

@ -66,7 +66,7 @@ extern void K_unlock(struct k_args *);
extern void _k_fifo_enque_request(struct k_args *);
extern void _k_fifo_enque_reply(struct k_args *);
extern void K_deqreq(struct k_args *);
extern void K_deqrpl(struct k_args *);
extern void _k_fifo_deque_reply(struct k_args *);
extern void K_queue(struct k_args *);
extern void _k_mbox_send_request(struct k_args *);
extern void _k_mbox_send_reply(struct k_args *);

View file

@ -34,7 +34,7 @@
#define KFIFO_H
extern void _k_fifo_enque_reply(struct k_args *A);
extern void K_deqrpl(struct k_args *A);
extern void _k_fifo_deque_reply(struct k_args *A);
extern void _k_fifo_enque_request(struct k_args *A);
extern void K_deqreq(struct k_args *A);
extern void K_queue(struct k_args *A);

View file

@ -159,12 +159,12 @@ int _task_fifo_put(kfifo_t queue, /* FIFO queue */
/*******************************************************************************
*
* K_deqrpl - finish performing an incomplete FIFO dequeue request
* _k_fifo_deque_reply - finish performing an incomplete FIFO dequeue request
*
* RETURNS: N/A
*/
void K_deqrpl(struct k_args *A)
void _k_fifo_deque_reply(struct k_args *A)
{
if (A->Time.timer)
FREETIMER(A->Time.timer);

View file

@ -783,8 +783,8 @@ def kernel_main_c_kernel_services():
"/* 26 */ _k_fifo_enque_reply,", # depends on FIFOs
"/* 27 */ _k_fifo_enque_reply,", # depends on FIFOs and timers
"/* 28 */ K_deqreq,", # depends on FIFOs
"/* 29 */ K_deqrpl,", # depends on FIFOs
"/* 30 */ K_deqrpl,", # depends on FIFOs and timers
"/* 29 */ _k_fifo_deque_reply,", # depends on FIFOs
"/* 30 */ _k_fifo_deque_reply,", # depends on FIFOs and timers
"/* 31 */ K_queue,", # depends on FIFOs
"/* 32 */ _k_mbox_send_request,", # depends on mailboxes
"/* 33 */ _k_mbox_send_reply,", # depends on mailboxes and timers