summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/dlh.h
blob: 9e49c2ff3cb80775e730c53f14061750ef19772d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*-
 * Copyright (c) 2014-2016 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

struct __wt_dlh {
	TAILQ_ENTRY(__wt_dlh) q;		/* List of open libraries. */

	void	*handle;			/* Handle returned by dlopen. */
	char	*name;

	int (*terminate)(WT_CONNECTION *);	/* Terminate function. */
};