Skip to content
Snippets Groups Projects
Select Git revision
  • 2e9600204fe5a820e229b9f60f3dee23a8b835ab
  • master default
  • pristine-tar
  • release-4.4
  • release-4.5
  • release-4.3
  • release-4.2
  • release-4.1
  • release-4.0
  • release-3.7
  • release-3.6
  • release-3.5
  • release-3.4
  • release-3.3
  • release-3.2
  • release-3.1
  • release-3.0
  • release-2.23
  • release-2.22
  • release-2.21
  • release-2.20
  • bugzilla-4.4.8
  • bugzilla-4.4.7
  • bugzilla-4.4.6
  • bugzilla-4.5.4
  • bugzilla-4.5.3
  • bugzilla-4.5.2
  • bugzilla-4.5.1
  • bugzilla-4.4.4
  • bugzilla-4.4.3
  • bugzilla-4.4.2
  • bugzilla-4.4.1
  • bugzilla-4.4
  • bugzilla-4.3.3
  • bugzilla-4.3.2
  • bugzilla-4.3.1
  • bugzilla-4.2.9
  • bugzilla-4.2.8
  • bugzilla-4.2.7
  • bugzilla-4.2.6
  • bugzilla-4.2.5
41 results

globals.pl

Blame
  • block_alloc_h.h 2.24 KiB
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    */
    
    #undef BLOCK_ALLOC
    #undef PTR_HASH_ALLOC
    #undef PTR_HASH_ALLOC_FIXED
    #undef BLOCK_ALLOC_FILL_PAGES
    #undef PTR_HASH_ALLOC_FILL_PAGES
    #undef PTR_HASH_ALLOC_FIXED_FILL_PAGES
    
    #ifndef PIKE_HASH_T
    #define PIKE_HASH_T	size_t
    #endif /* !PIKE_HASH_T */
    
    #ifdef BLOCK_ALLOC_USED
    #error "block_alloc.h must be included after all uses of block_alloc_h.h"
    #endif /* BLOCK_ALLOC_USED */
    
    #define BLOCK_ALLOC(DATA,SIZE)						\
    struct DATA *PIKE_CONCAT(alloc_,DATA)(void);				\
    PMOD_EXPORT void PIKE_CONCAT(really_free_,DATA)(struct DATA *d);			\
    void PIKE_CONCAT3(count_memory_in_,DATA,s)(size_t *num, size_t *size);
    
    
    #define PTR_HASH_ALLOC(DATA,BSIZE)				\
    BLOCK_ALLOC(DATA,BSIZE);					\
    extern struct DATA **PIKE_CONCAT(DATA,_hash_table);		\
    extern size_t PIKE_CONCAT(DATA,_hash_table_size);		\
    struct DATA *PIKE_CONCAT(find_,DATA)(void *ptr);		\
    struct DATA *PIKE_CONCAT3(make_,DATA,_unlocked)			\
    		(void *ptr, PIKE_HASH_T hval);			\
    struct DATA *PIKE_CONCAT(make_,DATA)(void *ptr);		\
    struct DATA *PIKE_CONCAT(get_,DATA)(void *ptr);			\
    int PIKE_CONCAT3(check_,DATA,_semaphore)(void *ptr);		\
    void PIKE_CONCAT(move_,DATA)(struct DATA *block, void *new_ptr); \
    int PIKE_CONCAT(remove_,DATA)(void *ptr);			\
    void PIKE_CONCAT3(low_init_,DATA,_hash)(size_t);		\
    void PIKE_CONCAT3(init_,DATA,_hash)(void);			\
    void PIKE_CONCAT3(exit_,DATA,_hash)(void);
    
    #define PTR_HASH_ALLOC_FIXED(DATA,BSIZE)			\
    PTR_HASH_ALLOC(DATA,BSIZE)
    
    #define BLOCK_ALLOC_FILL_PAGES(DATA,PAGES) BLOCK_ALLOC(DATA, n/a)
    #define PTR_HASH_ALLOC_FILL_PAGES(DATA,PAGES) PTR_HASH_ALLOC(DATA, n/a)
    #define PTR_HASH_ALLOC_FIXED_FILL_PAGES(DATA,PAGES) PTR_HASH_ALLOC_FIXED(DATA, n/a)
    
    #define PTR_HASH_LOOP(DATA,HVAL,PTR)					\
      for ((HVAL) = (PIKE_HASH_T)PIKE_CONCAT(DATA,_hash_table_size); (HVAL)-- > 0;)	\
        for ((PTR) = PIKE_CONCAT(DATA,_hash_table)[HVAL];			\
    	 (PTR); (PTR) = (PTR)->BLOCK_ALLOC_NEXT)
    
    /* The name of a member in the BLOCK_ALLOC struct big enough to
     * contain a void * (used for the free list). */
    #define BLOCK_ALLOC_NEXT next
    
    /* The name of a void * member in the PTR_HASH_ALLOC struct containing
     * the key. */
    #define PTR_HASH_ALLOC_DATA data