This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
3ab75623fa
zephyr
/
misc
/
Makefile
4 lines
61 B
Makefile
Raw
Normal View
History
Unescape
Escape
dlist: enhance library and make all functions inline The old doubly-linked list implementation had only support for very basic operations, i.e. add at head and remove. The new implementation is highly enhanced, allowing these operations: - initialize list - check if a node is the list's head - check if a node is the list's tail - check if the list is empty - get a reference to the head item in the list - get a reference to the next item in the list - add node to tail of list - add node to head of list - insert node after a node - insert node before a node - insert node at position based on condition - remove a specific node from a list - get the first node in a list The implementation is completely inline, since the operations are rather simple and do not warrant a function call. Change-Id: Id85c04e67f6a88b005390172f1276daa12bcf8ce Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
2015-06-15 00:15:05 +08:00
obj-y
=
Creation of Makefiles for kernel and misc directory. This commit creates the Makefiles that describe the object-bundles for the kernel directory and every sub-directory below. It also includes the misc Makefile. Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com> Change-Id: I847e79a40ced0b1d8370b893cd95c15efc7e5147
2015-03-10 06:54:17 +08:00
obj-$(CONFIG_PRINTK)
+=
printk.o
obj-y
+=
generated/