make mm_tbuf_t public

This commit is contained in:
Chris Seymour 2023-04-19 10:27:35 +01:00 committed by Heng Li
parent 5e7242303c
commit 819d843e3c
2 changed files with 5 additions and 5 deletions

5
map.c
View File

@ -10,11 +10,6 @@
#include "bseq.h"
#include "khash.h"
struct mm_tbuf_s {
void *km;
int rep_len, frag_gap;
};
mm_tbuf_t *mm_tbuf_init(void)
{
mm_tbuf_t *b;

View File

@ -193,6 +193,11 @@ typedef struct {
} mm_idx_reader_t;
// memory buffer for thread-local storage during mapping
struct mm_tbuf_s {
void *km;
int rep_len, frag_gap;
};
typedef struct mm_tbuf_s mm_tbuf_t;
// global variables