aboutsummaryrefslogtreecommitdiff
path: root/helper/hashtable.c
diff options
context:
space:
mode:
authorhuanggaoyang <huanggaoyang1@huawei.com>2015-11-11 15:00:42 +0800
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-11-16 11:29:29 +0300
commitc7da92cdc9568c1ab9d7f75c81bcb5ad530b685d (patch)
treecbc756e5864f1b9c53b151c6335317372d231ea4 /helper/hashtable.c
parent7d9180e8a695e26fe4743e3a6e90944c7a91bb26 (diff)
helper: table: fix the doxygen warning
Signed-off-by: huanggaoyang <huanggaoyang1@huawei.com> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'helper/hashtable.c')
-rw-r--r--helper/hashtable.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/helper/hashtable.c b/helper/hashtable.c
index e49c63be2..0b29814e5 100644
--- a/helper/hashtable.c
+++ b/helper/hashtable.c
@@ -31,9 +31,9 @@
* into a list
*/
typedef struct odph_hash_node {
- /**< list structure,for list opt */
+ /** list structure,for list opt */
odph_list_object list_node;
- /**< Flexible Array,memory will be alloced when table has been created
+ /** Flexible Array,memory will be alloced when table has been created
* Its length is key_size + value_size,
* suppose key_size = m; value_size = n;
* its structure is like:
@@ -47,15 +47,15 @@ typedef struct {
uint32_t key_size; /**< input param when create,in Bytes */
uint32_t value_size; /**< input param when create,in Bytes */
uint32_t init_cap; /**< input param when create,in Bytes */
- /**< multi-process support,every list has one rw lock */
+ /** multi-process support,every list has one rw lock */
odp_rwlock_t *lock_pool;
- /**< table bucket pool,every hash value has one list head */
+ /** table bucket pool,every hash value has one list head */
odph_list_head *list_head_pool;
- /**< number of the list head in list_head_pool */
+ /** number of the list head in list_head_pool */
uint32_t head_num;
- /**< table element pool */
+ /** table element pool */
odph_hash_node *hash_node_pool;
- /**< number of element in the hash_node_pool */
+ /** number of element in the hash_node_pool */
uint32_t hash_node_num;
char rsv[7]; /**< Reserved,for alignment */
char name[ODPH_TABLE_NAME_LEN]; /**< table name */