PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ CreatePrepGeomHash()

static void CreatePrepGeomHash ( void  )
static

Definition at line 218 of file lwgeom_geos_prepared.c.

References mcxt_ptr_hasha(), PREPARED_BACKEND_HASH_SIZE, and PrepGeomHash.

Referenced by PrepGeomCacheBuilder().

219 {
220  HASHCTL ctl;
221 
222  ctl.keysize = sizeof(MemoryContext);
223  ctl.entrysize = sizeof(PrepGeomHashEntry);
224  ctl.hash = mcxt_ptr_hasha;
225 
226  PrepGeomHash = hash_create("PostGIS Prepared Geometry Backend MemoryContext Hash", PREPARED_BACKEND_HASH_SIZE, &ctl, (HASH_ELEM | HASH_FUNCTION));
227 }
#define PREPARED_BACKEND_HASH_SIZE
uint32 mcxt_ptr_hasha(const void *key, Size keysize)
static HTAB * PrepGeomHash
Here is the call graph for this function:
Here is the caller graph for this function: