xref: /freebsd/contrib/jemalloc/include/jemalloc/internal/tsd_types.h (revision 4198293b2568c3fa287e7bde71162e9d442f4305)
1 #ifndef JEMALLOC_INTERNAL_TSD_TYPES_H
2 #define JEMALLOC_INTERNAL_TSD_TYPES_H
3 
4 #define MALLOC_TSD_CLEANUPS_MAX	2
5 
6 typedef struct tsd_s tsd_t;
7 typedef struct tsdn_s tsdn_t;
8 typedef bool (*malloc_tsd_cleanup_t)(void);
9 
10 #endif /* JEMALLOC_INTERNAL_TSD_TYPES_H */
11