12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * StarPU
- * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #ifndef __GENERIC_HTABLE_H__
- #define __GENERIC_HTABLE_H__
- #include <stdint.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <assert.h>
- #define STARPU_HTBL32_NODE_SIZE 16
- /* Hierarchical table: all nodes have a 2^16 arity . */
- typedef struct starpu_htbl32_node_s {
- unsigned nentries;
- struct starpu_htbl32_node_s *children[1<<STARPU_HTBL32_NODE_SIZE];
- } starpu_htbl32_node_t;
- /* Look for a 32bit key into the hierchical table. Returns the entry if
- * something is found, NULL otherwise. */
- void *_starpu_htbl_search_32(struct starpu_htbl32_node_s *htbl, uint32_t key);
- /* Insert an entry indexed by the 32bit key into the hierarchical table.
- * Returns the entry that was previously associated to that key if any, NULL
- * otherwise. */
- void *_starpu_htbl_insert_32(struct starpu_htbl32_node_s **htbl, uint32_t key, void *entry);
- #endif // __GENERIC_HTABLE_H__
|