Changeset 1023758 in mainline
- Timestamp:
- 2016-05-14T06:14:13Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1cf26ab
- Parents:
- d249b9d
- Location:
- kernel/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/adt/list.h
rd249b9d r1023758 76 76 #define list_foreach(list, member, itype, iterator) \ 77 77 for (itype *iterator = NULL; iterator == NULL; iterator = (itype *) 1) \ 78 79 iterator = list_get_instance(_link, itype, member), \80 _link != &(list).head; _link = _link->next)78 for (link_t *_link = (list).head.next; \ 79 iterator = list_get_instance(_link, itype, member), \ 80 _link != &(list).head; _link = _link->next) 81 81 82 82 #define list_foreach_rev(list, member, itype, iterator) \ 83 83 for (itype *iterator = NULL; iterator == NULL; iterator = (itype *) 1) \ 84 85 iterator = list_get_instance(_link, itype, member), \86 _link != &(list).head; _link = _link->prev)84 for (link_t *_link = (list).head.prev; \ 85 iterator = list_get_instance(_link, itype, member), \ 86 _link != &(list).head; _link = _link->prev) 87 87 88 88 /** Unlike list_foreach(), allows removing items while traversing a list. … … 113 113 #define list_foreach_safe(list, iterator, next_iter) \ 114 114 for (link_t *iterator = (list).head.next, \ 115 116 117 115 *next_iter = iterator->next; \ 116 iterator != &(list).head; \ 117 iterator = next_iter, next_iter = iterator->next) 118 118 119 119 -
kernel/generic/src/adt/cht.c
rd249b9d r1023758 526 526 ASSERT(op && op->hash && op->key_hash && op->equal && op->key_equal); 527 527 /* Memoized hashes are stored in the rcu_link.func function pointer. */ 528 ASSERT(sizeof(size_t) == sizeof(rcu_func_t));528 STATIC_ASSERT(sizeof(size_t) == sizeof(rcu_func_t)); 529 529 ASSERT(sentinel.hash == (uintptr_t)sentinel.rcu_link.func); 530 530 … … 1311 1311 } 1312 1312 } else { 1313 ASSERT(N_JOIN == N_JOIN_FOLLOWS);1313 STATIC_ASSERT(N_JOIN == N_JOIN_FOLLOWS); 1314 1314 1315 1315 /* Keep the N_JOIN/N_JOIN_FOLLOWS mark but strip N_DELETED. */
Note:
See TracChangeset
for help on using the changeset viewer.