zephyr/include/microkernel
Dan Kalowsky b0d718d116 Renaming K_dealloc to _k_mem_map_dealloc
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: Ia233946c1c4cce4a9a1b0c72a5f5025e0456441d
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
2016-02-05 20:13:48 -05:00
..
chan.h
cmdPkt.h
entries.h Renaming K_dealloc to _k_mem_map_dealloc 2016-02-05 20:13:48 -05:00
event_api_export.h
event.h
fifo_api_export.h
fifo.h
k_chstr.h
k_struct.h
k_types.h Remove OBJ_NODE() macro 2016-02-05 20:13:42 -05:00
mail_api_export.h
mail.h
memcpy.h
mmap.h Renaming InitMap _mem_map_init 2016-02-05 20:13:46 -05:00
mutex_api_export.h
mutex.h
pool.h Renaming InitPools to _mem_pools_init 2016-02-05 20:13:46 -05:00
sema_api_export.h
sema.h
task_api_export.h
task_irq_api_export.h
task_irq.h
task.h Rename K_Task to _k_current_task 2016-02-05 20:13:43 -05:00
ticks.h Rename K_TimerFree to _k_timer_free 2016-02-05 20:13:43 -05:00