1#ifndef JEMALLOC_INTERNAL_TSD_TYPES_H
2#define JEMALLOC_INTERNAL_TSD_TYPES_H
3
4#define MALLOC_TSD_CLEANUPS_MAX 4
5
6typedef struct tsd_s tsd_t;
7typedef struct tsdn_s tsdn_t;
8typedef bool (*malloc_tsd_cleanup_t)(void);
9
10#endif /* JEMALLOC_INTERNAL_TSD_TYPES_H */
11