View | Details | Raw Unified | Return to bug 232690 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/pmdk/Makefile (+33 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	pmdk
4
PORTVERSION=	1.4.2
5
CATEGORIES=	devel
6
7
MAINTAINER=	d.scott.phillips@intel.com
8
COMMENT=	Libraries and tools to manage and access persistent memory devices
9
10
# pmdk code is BSD3CLAUSE, jemalloc is BSD2CLAUSE,
11
# valgrind headers are BSD4CLAUSE
12
LICENSE=	BSD3CLAUSE BSD2CLAUSE BSD4CLAUSE
13
LICENSE_COMB=	multi
14
15
ONLY_FOR_ARCHS=	aarch64 amd64
16
17
LIB_DEPENDS=	libuuid.so:misc/e2fsprogs-libuuid
18
19
BUILD_DEPENDS=	bash:shells/bash
20
BUILD_DEPENDS+=	doxygen:devel/doxygen
21
22
USES=		autoreconf:build gmake pkgconfig
23
USE_GITHUB=	YES
24
GH_ACCOUNT=	pmem
25
26
MAKE_ARGS=	EXTRA_CFLAGS=-Wno-error=unused-value
27
28
post-stage:
29
	${RM} -rf ${STAGEDIR}${PREFIX}/lib/pmdk_debug
30
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pmempool
31
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.1.0.0
32
33
.include <bsd.port.mk>
(-)b/devel/pmdk/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1540344814
2
SHA256 (pmem-pmdk-1.4.2_GH0.tar.gz) = df7e658e75d28cd80f6d2ff7b9fc9ae2885d52f8923fdbacecfd46215115fb4c
3
SIZE (pmem-pmdk-1.4.2_GH0.tar.gz) = 3107711
(-)b/devel/pmdk/files/patch-src_Makefile.inc (+20 lines)
Added Link Here
1
--- src/Makefile.inc.orig	2018-08-16 14:29:25 UTC
2
+++ src/Makefile.inc
3
@@ -152,7 +152,7 @@ ifneq ($(TESTBUILD), 1)
4
 $(error "$(TESTCMD)" failed)
5
 endif
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 ifneq ($(ARCH), x86_64)
10
 ifneq ($(ARCH), aarch64)
11
 $(error unsupported architecture: $(ARCH))
12
@@ -275,7 +275,7 @@ install: all
13
 ifneq ($(LIBRARY_NAME),)
14
 	$(INSTALL) -d $(LIBS_DESTDIR)
15
 	$(INSTALL) -p -m 0755 $(TARGET_LIBS) $(LIBS_DESTDIR)
16
-	$(CP) -d $(TARGET_LINKS) $(LIBS_DESTDIR)
17
+	$(CP) -a $(TARGET_LINKS) $(LIBS_DESTDIR)
18
 endif
19
 
20
 uninstall:
(-)b/devel/pmdk/files/patch-src_common.inc (+14 lines)
Added Link Here
1
--- src/common.inc.orig	2018-08-16 14:29:25 UTC
2
+++ src/common.inc
3
@@ -115,9 +115,9 @@ check_Wconversion = $(shell echo "long random(void); c
4
 check_librt = $(shell echo "int main() { struct timespec t; return clock_gettime(CLOCK_MONOTONIC, &t); }" |\
5
 	$(CC) $(CFLAGS) -x c -include time.h -o /dev/null - 2>/dev/null && echo y || echo n)
6
 
7
-install_recursive = $(shell cd $(1) && find . -type f -exec install -m $(2) -D {} $(3)/{} \;)
8
+install_recursive = $(shell cd $(1) && find . -type d -exec install -d $(3)/{} \; && find . -type f -exec install -m $(2) {} $(3)/{} \;)
9
 
10
-install_recursive_filter = $(shell cd $(1) && find . -type f -name "$(2)" -exec install -m $(3) -D {} $(4)/{} \;)
11
+install_recursive_filter = $(shell cd $(1) && find . -type d -exec install -d $(4)/{} \; && find . -type f -name "$(2)" -exec install -m $(3) {} $(4)/{} \;)
12
 
13
 define create-deps
14
 	@cp $(objdir)/$*.d $(objdir)/.deps/$*.P; \
(-)b/devel/pmdk/files/patch-src_common_os__posix.c (+14 lines)
Added Link Here
1
--- src/common/os_posix.c.orig	2018-10-25 05:37:18 UTC
2
+++ src/common/os_posix.c
3
@@ -174,9 +174,8 @@ os_posix_fallocate(int fd, os_off_t offset, off_t len)
4
 		if (fstatfs(fd, &fsbuf) == -1 || fstat(fd, &fbuf) == -1)
5
 			return errno;
6
 
7
-		size_t reqd_blocks =
8
-			(((size_t)len + (fsbuf.f_bsize - 1)) / fsbuf.f_bsize)
9
-				- (size_t)fbuf.st_blocks;
10
+		size_t reqd_blocks = (((size_t)len + (fsbuf.f_bsize - 1)) / fsbuf.f_bsize);
11
+		reqd_blocks -= fbuf.st_blocks > reqd_blocks ? reqd_blocks : fbuf.st_blocks;
12
 		if (reqd_blocks > (size_t)fsbuf.f_bavail)
13
 			return ENOSPC;
14
 	}
(-)b/devel/pmdk/files/patch-src_common_queue.h (+13 lines)
Added Link Here
1
--- src/common/queue.h.orig	2018-10-24 02:57:34 UTC
2
+++ src/common/queue.h
3
@@ -32,8 +32,8 @@
4
  *	@(#)queue.h	8.5 (Berkeley) 8/20/94
5
  */
6
 
7
-#ifndef	_SYS_QUEUE_H_
8
-#define	_SYS_QUEUE_H_
9
+#ifndef	_COPIED_GLIBC_SYS_QUEUE_H_
10
+#define	_COPIED_GLIBC_SYS_QUEUE_H_
11
 
12
 /*
13
  * This file defines five types of data structures: singly-linked lists,
(-)b/devel/pmdk/files/patch-src_examples_libpmemcto_libart_Makefile (+11 lines)
Added Link Here
1
--- src/examples/libpmemcto/libart/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/examples/libpmemcto/libart/Makefile
3
@@ -48,7 +48,7 @@
4
 
5
 include ../../../common.inc
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 ifeq ($(ARCH), x86_64)
11
 # libart uses x86 intrinsics
(-)b/devel/pmdk/files/patch-src_examples_libpmemobj_libart_Makefile (+11 lines)
Added Link Here
1
--- src/examples/libpmemobj/libart/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/examples/libpmemobj/libart/Makefile
3
@@ -49,7 +49,7 @@
4
 
5
 include ../../../common.inc
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 ifeq ($(ARCH), x86_64)
11
 # libart uses x86 intrinsics
(-)b/devel/pmdk/files/patch-src_examples_libvmem_libart_Makefile (+11 lines)
Added Link Here
1
--- src/examples/libvmem/libart/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/examples/libvmem/libart/Makefile
3
@@ -48,7 +48,7 @@
4
 
5
 include ../../../common.inc
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 ifeq ($(ARCH), x86_64)
11
 # libart uses x86 intrinsics
(-)b/devel/pmdk/files/patch-src_libpmem_Makefile (+11 lines)
Added Link Here
1
--- src/libpmem/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/libpmem/Makefile
3
@@ -34,7 +34,7 @@
4
 
5
 include ../common.inc
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 LIBRARY_NAME = pmem
11
 LIBRARY_SO_VERSION = 1
(-)b/devel/pmdk/files/patch-src_test_Makefile (+11 lines)
Added Link Here
1
--- src/test/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/test/Makefile
3
@@ -38,7 +38,7 @@
4
 
5
 include ../common.inc
6
 
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 TEST_DEPS = \
11
 	unittest\
(-)b/devel/pmdk/files/patch-src_test_Makefile.inc (+11 lines)
Added Link Here
1
--- src/test/Makefile.inc.orig	2018-10-24 02:45:18 UTC
2
+++ src/test/Makefile.inc
3
@@ -40,7 +40,7 @@
4
 TOP := $(dir $(lastword $(MAKEFILE_LIST)))../..
5
 
6
 include $(TOP)/src/common.inc
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 include $(TOP)/src/libpmem/$(ARCH)/sources.inc
10
 
11
 INCS += $(OS_INCS)
(-)b/devel/pmdk/files/patch-src_test_pmem__deep__persist_Makefile (+11 lines)
Added Link Here
1
--- src/test/pmem_deep_persist/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/test/pmem_deep_persist/Makefile
3
@@ -34,7 +34,7 @@
4
 # src/test/pmem_deep_persist/Makefile -- build pmem_deep_persist test
5
 #
6
 include ../../common.inc
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 
10
 TOP = ../../..
11
 vpath %.c $(TOP)/src/common
(-)b/devel/pmdk/files/patch-src_test_pmem__is__pmem__posix_Makefile (+11 lines)
Added Link Here
1
--- src/test/pmem_is_pmem_posix/Makefile.orig	2018-10-24 02:45:18 UTC
2
+++ src/test/pmem_is_pmem_posix/Makefile
3
@@ -34,7 +34,7 @@
4
 # src/test/pmem_is_pmem_posix/Makefile -- build pmem_is_pmem_posix unit test
5
 #
6
 include ../../common.inc
7
-ARCH := $(call get_arch)
8
+override ARCH := $(call get_arch)
9
 TOP = ../../..
10
 vpath %.c $(TOP)/src/common
11
 vpath %.c $(TOP)/src/libpmem
(-)b/devel/pmdk/pkg-descr (+6 lines)
Added Link Here
1
The Persistent Memory Development Kit (PMDK) is a collection of
2
libraries and tools for System Administrators and Application
3
Developers to simplify managing and accessing persistent memory
4
devices.
5
6
WWW: http://pmem.io.
(-)b/devel/pmdk/pkg-message (+2 lines)
Added Link Here
1
pmdk requires procfs(5). Add this line to your fstab(5):
2
proc /proc procfs rw 0 0
(-)b/devel/pmdk/pkg-plist (-1 / +684 lines)
Added Link Here
0
- 
1
bin/pmempool
2
etc/bash_completion.d/pmempool
3
include/libpmem.h
4
include/libpmemblk.h
5
include/libpmemcto.h
6
include/libpmemlog.h
7
include/libpmemobj++/allocator.hpp
8
include/libpmemobj++/condition_variable.hpp
9
include/libpmemobj++/detail/array_traits.hpp
10
include/libpmemobj++/detail/check_persistent_ptr_array.hpp
11
include/libpmemobj++/detail/common.hpp
12
include/libpmemobj++/detail/conversions.hpp
13
include/libpmemobj++/detail/integer_sequence.hpp
14
include/libpmemobj++/detail/life.hpp
15
include/libpmemobj++/detail/make_atomic_impl.hpp
16
include/libpmemobj++/detail/persistent_ptr_base.hpp
17
include/libpmemobj++/detail/pexceptions.hpp
18
include/libpmemobj++/detail/specialization.hpp
19
include/libpmemobj++/make_persistent.hpp
20
include/libpmemobj++/make_persistent_array.hpp
21
include/libpmemobj++/make_persistent_array_atomic.hpp
22
include/libpmemobj++/make_persistent_atomic.hpp
23
include/libpmemobj++/mutex.hpp
24
include/libpmemobj++/p.hpp
25
include/libpmemobj++/persistent_ptr.hpp
26
include/libpmemobj++/pext.hpp
27
include/libpmemobj++/pool.hpp
28
include/libpmemobj++/shared_mutex.hpp
29
include/libpmemobj++/timed_mutex.hpp
30
include/libpmemobj++/transaction.hpp
31
include/libpmemobj++/utils.hpp
32
include/libpmemobj.h
33
include/libpmemobj/action.h
34
include/libpmemobj/action_base.h
35
include/libpmemobj/atomic.h
36
include/libpmemobj/atomic_base.h
37
include/libpmemobj/base.h
38
include/libpmemobj/ctl.h
39
include/libpmemobj/iterator.h
40
include/libpmemobj/iterator_base.h
41
include/libpmemobj/lists_atomic.h
42
include/libpmemobj/lists_atomic_base.h
43
include/libpmemobj/pool.h
44
include/libpmemobj/pool_base.h
45
include/libpmemobj/thread.h
46
include/libpmemobj/tx.h
47
include/libpmemobj/tx_base.h
48
include/libpmemobj/types.h
49
include/libpmempool.h
50
include/libvmem.h
51
include/libvmmalloc.h
52
lib/libpmem.a
53
lib/libpmem.so
54
lib/libpmem.so.1
55
lib/libpmem.so.1.0.0
56
lib/libpmemblk.a
57
lib/libpmemblk.so
58
lib/libpmemblk.so.1
59
lib/libpmemblk.so.1.0.0
60
lib/libpmemcto.a
61
lib/libpmemcto.so
62
lib/libpmemcto.so.1
63
lib/libpmemcto.so.1.0.0
64
lib/libpmemlog.a
65
lib/libpmemlog.so
66
lib/libpmemlog.so.1
67
lib/libpmemlog.so.1.0.0
68
lib/libpmemobj.a
69
lib/libpmemobj.so
70
lib/libpmemobj.so.1
71
lib/libpmemobj.so.1.0.0
72
lib/libpmempool.a
73
lib/libpmempool.so
74
lib/libpmempool.so.1
75
lib/libpmempool.so.1.0.0
76
lib/libvmem.a
77
lib/libvmem.so
78
lib/libvmem.so.1
79
lib/libvmem.so.1.0.0
80
lib/libvmmalloc.a
81
lib/libvmmalloc.so
82
lib/libvmmalloc.so.1
83
lib/libvmmalloc.so.1.0.0
84
libdata/pkgconfig/libpmem.pc
85
libdata/pkgconfig/libpmemblk.pc
86
libdata/pkgconfig/libpmemcto.pc
87
libdata/pkgconfig/libpmemlog.pc
88
libdata/pkgconfig/libpmemobj++.pc
89
libdata/pkgconfig/libpmemobj.pc
90
libdata/pkgconfig/libpmempool.pc
91
libdata/pkgconfig/libvmem.pc
92
libdata/pkgconfig/libvmmalloc.pc
93
share/doc/libpmemobj++-dev/allocator_8hpp.html
94
share/doc/libpmemobj++-dev/allocator_8hpp_source.html
95
share/doc/libpmemobj++-dev/annotated.html
96
share/doc/libpmemobj++-dev/array__traits_8hpp.html
97
share/doc/libpmemobj++-dev/array__traits_8hpp_source.html
98
share/doc/libpmemobj++-dev/bc_s.png
99
share/doc/libpmemobj++-dev/bdwn.png
100
share/doc/libpmemobj++-dev/check__persistent__ptr__array_8hpp.html
101
share/doc/libpmemobj++-dev/check__persistent__ptr__array_8hpp_source.html
102
share/doc/libpmemobj++-dev/classes.html
103
share/doc/libpmemobj++-dev/classpmem_1_1detail_1_1persistent__ptr__base-members.html
104
share/doc/libpmemobj++-dev/classpmem_1_1detail_1_1persistent__ptr__base.html
105
share/doc/libpmemobj++-dev/classpmem_1_1detail_1_1persistent__ptr__base.png
106
share/doc/libpmemobj++-dev/classpmem_1_1lock__error.html
107
share/doc/libpmemobj++-dev/classpmem_1_1manual__tx__abort.html
108
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1allocator-members.html
109
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1allocator.html
110
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1condition__variable-members.html
111
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1condition__variable.html
112
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1mutex-members.html
113
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1mutex.html
114
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1object__traits-members.html
115
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1object__traits.html
116
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1object__traits_3_01void_01_4-members.html
117
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1object__traits_3_01void_01_4.html
118
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1p-members.html
119
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1p.html
120
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1persistent__ptr-members.html
121
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1persistent__ptr.html
122
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1persistent__ptr.png
123
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool-members.html
124
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool.html
125
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool.png
126
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool__base-members.html
127
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool__base.html
128
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1pool__base.png
129
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1shared__mutex-members.html
130
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1shared__mutex.html
131
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1standard__alloc__policy-members.html
132
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1standard__alloc__policy.html
133
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1standard__alloc__policy_3_01void_01_4-members.html
134
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1standard__alloc__policy_3_01void_01_4.html
135
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1timed__mutex-members.html
136
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1timed__mutex.html
137
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction-members.html
138
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction.html
139
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1automatic-members.html
140
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1automatic.html
141
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1automatic_1_1uncaught__exception__counter-members.html
142
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1automatic_1_1uncaught__exception__counter.html
143
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1manual-members.html
144
share/doc/libpmemobj++-dev/classpmem_1_1obj_1_1transaction_1_1manual.html
145
share/doc/libpmemobj++-dev/classpmem_1_1pool__error.html
146
share/doc/libpmemobj++-dev/classpmem_1_1transaction__alloc__error.html
147
share/doc/libpmemobj++-dev/classpmem_1_1transaction__alloc__error.png
148
share/doc/libpmemobj++-dev/classpmem_1_1transaction__error.html
149
share/doc/libpmemobj++-dev/classpmem_1_1transaction__error.png
150
share/doc/libpmemobj++-dev/classpmem_1_1transaction__free__error.html
151
share/doc/libpmemobj++-dev/classpmem_1_1transaction__free__error.png
152
share/doc/libpmemobj++-dev/classpmem_1_1transaction__scope__error.html
153
share/doc/libpmemobj++-dev/closed.png
154
share/doc/libpmemobj++-dev/common_8hpp.html
155
share/doc/libpmemobj++-dev/common_8hpp_source.html
156
share/doc/libpmemobj++-dev/condition__variable_8hpp.html
157
share/doc/libpmemobj++-dev/condition__variable_8hpp_source.html
158
share/doc/libpmemobj++-dev/conversions_8hpp.html
159
share/doc/libpmemobj++-dev/conversions_8hpp_source.html
160
share/doc/libpmemobj++-dev/dir_6d567830b6bf2043b91ed9ca58fd071b.html
161
share/doc/libpmemobj++-dev/dir_a5e25029ca08f6980ba72569627aee2e.html
162
share/doc/libpmemobj++-dev/dir_d02785570911eb5e8e8222e4294f2aca.html
163
share/doc/libpmemobj++-dev/dir_db6c799aa7f0821d4018f77d17a806da.html
164
share/doc/libpmemobj++-dev/dir_f268a27e2c10b47ed8a46f6760e6b97c.html
165
share/doc/libpmemobj++-dev/doc.png
166
share/doc/libpmemobj++-dev/doxygen.css
167
share/doc/libpmemobj++-dev/doxygen.png
168
share/doc/libpmemobj++-dev/dynsections.js
169
share/doc/libpmemobj++-dev/files.html
170
share/doc/libpmemobj++-dev/folderclosed.png
171
share/doc/libpmemobj++-dev/folderopen.png
172
share/doc/libpmemobj++-dev/functions.html
173
share/doc/libpmemobj++-dev/functions_0x7e.html
174
share/doc/libpmemobj++-dev/functions_b.html
175
share/doc/libpmemobj++-dev/functions_c.html
176
share/doc/libpmemobj++-dev/functions_d.html
177
share/doc/libpmemobj++-dev/functions_e.html
178
share/doc/libpmemobj++-dev/functions_f.html
179
share/doc/libpmemobj++-dev/functions_func.html
180
share/doc/libpmemobj++-dev/functions_g.html
181
share/doc/libpmemobj++-dev/functions_i.html
182
share/doc/libpmemobj++-dev/functions_l.html
183
share/doc/libpmemobj++-dev/functions_m.html
184
share/doc/libpmemobj++-dev/functions_n.html
185
share/doc/libpmemobj++-dev/functions_o.html
186
share/doc/libpmemobj++-dev/functions_p.html
187
share/doc/libpmemobj++-dev/functions_r.html
188
share/doc/libpmemobj++-dev/functions_s.html
189
share/doc/libpmemobj++-dev/functions_t.html
190
share/doc/libpmemobj++-dev/functions_type.html
191
share/doc/libpmemobj++-dev/functions_u.html
192
share/doc/libpmemobj++-dev/functions_v.html
193
share/doc/libpmemobj++-dev/functions_vars.html
194
share/doc/libpmemobj++-dev/functions_w.html
195
share/doc/libpmemobj++-dev/hierarchy.html
196
share/doc/libpmemobj++-dev/index.html
197
share/doc/libpmemobj++-dev/integer__sequence_8hpp.html
198
share/doc/libpmemobj++-dev/integer__sequence_8hpp_source.html
199
share/doc/libpmemobj++-dev/jquery.js
200
share/doc/libpmemobj++-dev/life_8hpp.html
201
share/doc/libpmemobj++-dev/life_8hpp_source.html
202
share/doc/libpmemobj++-dev/make__atomic__impl_8hpp.html
203
share/doc/libpmemobj++-dev/make__atomic__impl_8hpp_source.html
204
share/doc/libpmemobj++-dev/make__persistent_8hpp.html
205
share/doc/libpmemobj++-dev/make__persistent_8hpp_source.html
206
share/doc/libpmemobj++-dev/make__persistent__array_8hpp.html
207
share/doc/libpmemobj++-dev/make__persistent__array_8hpp_source.html
208
share/doc/libpmemobj++-dev/make__persistent__array__atomic_8hpp.html
209
share/doc/libpmemobj++-dev/make__persistent__array__atomic_8hpp_source.html
210
share/doc/libpmemobj++-dev/make__persistent__atomic_8hpp.html
211
share/doc/libpmemobj++-dev/make__persistent__atomic_8hpp_source.html
212
share/doc/libpmemobj++-dev/menu.js
213
share/doc/libpmemobj++-dev/menudata.js
214
share/doc/libpmemobj++-dev/mutex_8hpp.html
215
share/doc/libpmemobj++-dev/mutex_8hpp_source.html
216
share/doc/libpmemobj++-dev/nav_f.png
217
share/doc/libpmemobj++-dev/nav_g.png
218
share/doc/libpmemobj++-dev/nav_h.png
219
share/doc/libpmemobj++-dev/open.png
220
share/doc/libpmemobj++-dev/p_8hpp.html
221
share/doc/libpmemobj++-dev/p_8hpp_source.html
222
share/doc/libpmemobj++-dev/persistent__ptr_8hpp.html
223
share/doc/libpmemobj++-dev/persistent__ptr_8hpp_source.html
224
share/doc/libpmemobj++-dev/persistent__ptr__base_8hpp_source.html
225
share/doc/libpmemobj++-dev/pexceptions_8hpp.html
226
share/doc/libpmemobj++-dev/pexceptions_8hpp_source.html
227
share/doc/libpmemobj++-dev/pext_8hpp.html
228
share/doc/libpmemobj++-dev/pext_8hpp_source.html
229
share/doc/libpmemobj++-dev/pool_8hpp.html
230
share/doc/libpmemobj++-dev/pool_8hpp_source.html
231
share/doc/libpmemobj++-dev/search/all_0.html
232
share/doc/libpmemobj++-dev/search/all_0.js
233
share/doc/libpmemobj++-dev/search/all_1.html
234
share/doc/libpmemobj++-dev/search/all_1.js
235
share/doc/libpmemobj++-dev/search/all_10.html
236
share/doc/libpmemobj++-dev/search/all_10.js
237
share/doc/libpmemobj++-dev/search/all_11.html
238
share/doc/libpmemobj++-dev/search/all_11.js
239
share/doc/libpmemobj++-dev/search/all_12.html
240
share/doc/libpmemobj++-dev/search/all_12.js
241
share/doc/libpmemobj++-dev/search/all_13.html
242
share/doc/libpmemobj++-dev/search/all_13.js
243
share/doc/libpmemobj++-dev/search/all_2.html
244
share/doc/libpmemobj++-dev/search/all_2.js
245
share/doc/libpmemobj++-dev/search/all_3.html
246
share/doc/libpmemobj++-dev/search/all_3.js
247
share/doc/libpmemobj++-dev/search/all_4.html
248
share/doc/libpmemobj++-dev/search/all_4.js
249
share/doc/libpmemobj++-dev/search/all_5.html
250
share/doc/libpmemobj++-dev/search/all_5.js
251
share/doc/libpmemobj++-dev/search/all_6.html
252
share/doc/libpmemobj++-dev/search/all_6.js
253
share/doc/libpmemobj++-dev/search/all_7.html
254
share/doc/libpmemobj++-dev/search/all_7.js
255
share/doc/libpmemobj++-dev/search/all_8.html
256
share/doc/libpmemobj++-dev/search/all_8.js
257
share/doc/libpmemobj++-dev/search/all_9.html
258
share/doc/libpmemobj++-dev/search/all_9.js
259
share/doc/libpmemobj++-dev/search/all_a.html
260
share/doc/libpmemobj++-dev/search/all_a.js
261
share/doc/libpmemobj++-dev/search/all_b.html
262
share/doc/libpmemobj++-dev/search/all_b.js
263
share/doc/libpmemobj++-dev/search/all_c.html
264
share/doc/libpmemobj++-dev/search/all_c.js
265
share/doc/libpmemobj++-dev/search/all_d.html
266
share/doc/libpmemobj++-dev/search/all_d.js
267
share/doc/libpmemobj++-dev/search/all_e.html
268
share/doc/libpmemobj++-dev/search/all_e.js
269
share/doc/libpmemobj++-dev/search/all_f.html
270
share/doc/libpmemobj++-dev/search/all_f.js
271
share/doc/libpmemobj++-dev/search/classes_0.html
272
share/doc/libpmemobj++-dev/search/classes_0.js
273
share/doc/libpmemobj++-dev/search/classes_1.html
274
share/doc/libpmemobj++-dev/search/classes_1.js
275
share/doc/libpmemobj++-dev/search/classes_2.html
276
share/doc/libpmemobj++-dev/search/classes_2.js
277
share/doc/libpmemobj++-dev/search/classes_3.html
278
share/doc/libpmemobj++-dev/search/classes_3.js
279
share/doc/libpmemobj++-dev/search/classes_4.html
280
share/doc/libpmemobj++-dev/search/classes_4.js
281
share/doc/libpmemobj++-dev/search/classes_5.html
282
share/doc/libpmemobj++-dev/search/classes_5.js
283
share/doc/libpmemobj++-dev/search/classes_6.html
284
share/doc/libpmemobj++-dev/search/classes_6.js
285
share/doc/libpmemobj++-dev/search/classes_7.html
286
share/doc/libpmemobj++-dev/search/classes_7.js
287
share/doc/libpmemobj++-dev/search/classes_8.html
288
share/doc/libpmemobj++-dev/search/classes_8.js
289
share/doc/libpmemobj++-dev/search/classes_9.html
290
share/doc/libpmemobj++-dev/search/classes_9.js
291
share/doc/libpmemobj++-dev/search/close.png
292
share/doc/libpmemobj++-dev/search/files_0.html
293
share/doc/libpmemobj++-dev/search/files_0.js
294
share/doc/libpmemobj++-dev/search/files_1.html
295
share/doc/libpmemobj++-dev/search/files_1.js
296
share/doc/libpmemobj++-dev/search/files_2.html
297
share/doc/libpmemobj++-dev/search/files_2.js
298
share/doc/libpmemobj++-dev/search/files_3.html
299
share/doc/libpmemobj++-dev/search/files_3.js
300
share/doc/libpmemobj++-dev/search/files_4.html
301
share/doc/libpmemobj++-dev/search/files_4.js
302
share/doc/libpmemobj++-dev/search/files_5.html
303
share/doc/libpmemobj++-dev/search/files_5.js
304
share/doc/libpmemobj++-dev/search/files_6.html
305
share/doc/libpmemobj++-dev/search/files_6.js
306
share/doc/libpmemobj++-dev/search/files_7.html
307
share/doc/libpmemobj++-dev/search/files_7.js
308
share/doc/libpmemobj++-dev/search/files_8.html
309
share/doc/libpmemobj++-dev/search/files_8.js
310
share/doc/libpmemobj++-dev/search/functions_0.html
311
share/doc/libpmemobj++-dev/search/functions_0.js
312
share/doc/libpmemobj++-dev/search/functions_1.html
313
share/doc/libpmemobj++-dev/search/functions_1.js
314
share/doc/libpmemobj++-dev/search/functions_10.html
315
share/doc/libpmemobj++-dev/search/functions_10.js
316
share/doc/libpmemobj++-dev/search/functions_2.html
317
share/doc/libpmemobj++-dev/search/functions_2.js
318
share/doc/libpmemobj++-dev/search/functions_3.html
319
share/doc/libpmemobj++-dev/search/functions_3.js
320
share/doc/libpmemobj++-dev/search/functions_4.html
321
share/doc/libpmemobj++-dev/search/functions_4.js
322
share/doc/libpmemobj++-dev/search/functions_5.html
323
share/doc/libpmemobj++-dev/search/functions_5.js
324
share/doc/libpmemobj++-dev/search/functions_6.html
325
share/doc/libpmemobj++-dev/search/functions_6.js
326
share/doc/libpmemobj++-dev/search/functions_7.html
327
share/doc/libpmemobj++-dev/search/functions_7.js
328
share/doc/libpmemobj++-dev/search/functions_8.html
329
share/doc/libpmemobj++-dev/search/functions_8.js
330
share/doc/libpmemobj++-dev/search/functions_9.html
331
share/doc/libpmemobj++-dev/search/functions_9.js
332
share/doc/libpmemobj++-dev/search/functions_a.html
333
share/doc/libpmemobj++-dev/search/functions_a.js
334
share/doc/libpmemobj++-dev/search/functions_b.html
335
share/doc/libpmemobj++-dev/search/functions_b.js
336
share/doc/libpmemobj++-dev/search/functions_c.html
337
share/doc/libpmemobj++-dev/search/functions_c.js
338
share/doc/libpmemobj++-dev/search/functions_d.html
339
share/doc/libpmemobj++-dev/search/functions_d.js
340
share/doc/libpmemobj++-dev/search/functions_e.html
341
share/doc/libpmemobj++-dev/search/functions_e.js
342
share/doc/libpmemobj++-dev/search/functions_f.html
343
share/doc/libpmemobj++-dev/search/functions_f.js
344
share/doc/libpmemobj++-dev/search/mag_sel.png
345
share/doc/libpmemobj++-dev/search/nomatches.html
346
share/doc/libpmemobj++-dev/search/pages_0.html
347
share/doc/libpmemobj++-dev/search/pages_0.js
348
share/doc/libpmemobj++-dev/search/search.css
349
share/doc/libpmemobj++-dev/search/search.js
350
share/doc/libpmemobj++-dev/search/search_l.png
351
share/doc/libpmemobj++-dev/search/search_m.png
352
share/doc/libpmemobj++-dev/search/search_r.png
353
share/doc/libpmemobj++-dev/search/searchdata.js
354
share/doc/libpmemobj++-dev/search/typedefs_0.html
355
share/doc/libpmemobj++-dev/search/typedefs_0.js
356
share/doc/libpmemobj++-dev/search/typedefs_1.html
357
share/doc/libpmemobj++-dev/search/typedefs_1.js
358
share/doc/libpmemobj++-dev/search/typedefs_2.html
359
share/doc/libpmemobj++-dev/search/typedefs_2.js
360
share/doc/libpmemobj++-dev/search/typedefs_3.html
361
share/doc/libpmemobj++-dev/search/typedefs_3.js
362
share/doc/libpmemobj++-dev/search/typedefs_4.html
363
share/doc/libpmemobj++-dev/search/typedefs_4.js
364
share/doc/libpmemobj++-dev/search/typedefs_5.html
365
share/doc/libpmemobj++-dev/search/typedefs_5.js
366
share/doc/libpmemobj++-dev/search/typedefs_6.html
367
share/doc/libpmemobj++-dev/search/typedefs_6.js
368
share/doc/libpmemobj++-dev/search/typedefs_7.html
369
share/doc/libpmemobj++-dev/search/typedefs_7.js
370
share/doc/libpmemobj++-dev/search/variables_0.html
371
share/doc/libpmemobj++-dev/search/variables_0.js
372
share/doc/libpmemobj++-dev/search/variables_1.html
373
share/doc/libpmemobj++-dev/search/variables_1.js
374
share/doc/libpmemobj++-dev/shared__mutex_8hpp.html
375
share/doc/libpmemobj++-dev/shared__mutex_8hpp_source.html
376
share/doc/libpmemobj++-dev/specialization_8hpp.html
377
share/doc/libpmemobj++-dev/specialization_8hpp_source.html
378
share/doc/libpmemobj++-dev/splitbar.png
379
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1allocator_1_1rebind-members.html
380
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1allocator_1_1rebind.html
381
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1object__traits_1_1rebind-members.html
382
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1object__traits_1_1rebind.html
383
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1object__traits_3_01void_01_4_1_1rebind-members.html
384
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1object__traits_3_01void_01_4_1_1rebind.html
385
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1standard__alloc__policy_1_1rebind-members.html
386
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1standard__alloc__policy_1_1rebind.html
387
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1standard__alloc__policy_3_01void_01_4_1_1rebind-members.html
388
share/doc/libpmemobj++-dev/structpmem_1_1obj_1_1standard__alloc__policy_3_01void_01_4_1_1rebind.html
389
share/doc/libpmemobj++-dev/sync_off.png
390
share/doc/libpmemobj++-dev/sync_on.png
391
share/doc/libpmemobj++-dev/tab_a.png
392
share/doc/libpmemobj++-dev/tab_b.png
393
share/doc/libpmemobj++-dev/tab_h.png
394
share/doc/libpmemobj++-dev/tab_s.png
395
share/doc/libpmemobj++-dev/tabs.css
396
share/doc/libpmemobj++-dev/timed__mutex_8hpp.html
397
share/doc/libpmemobj++-dev/timed__mutex_8hpp_source.html
398
share/doc/libpmemobj++-dev/transaction_8hpp.html
399
share/doc/libpmemobj++-dev/transaction_8hpp_source.html
400
share/doc/libpmemobj++-dev/utils_8hpp.html
401
share/doc/libpmemobj++-dev/utils_8hpp_source.html
402
share/man/man1/pmempool-check.1.gz
403
share/man/man1/pmempool-convert.1.gz
404
share/man/man1/pmempool-create.1.gz
405
share/man/man1/pmempool-dump.1.gz
406
share/man/man1/pmempool-info.1.gz
407
share/man/man1/pmempool-rm.1.gz
408
share/man/man1/pmempool-sync.1.gz
409
share/man/man1/pmempool-transform.1.gz
410
share/man/man1/pmempool.1.gz
411
share/man/man3/d_ro.3.gz
412
share/man/man3/d_rw.3.gz
413
share/man/man3/direct_ro.3.gz
414
share/man/man3/direct_rw.3.gz
415
share/man/man3/oid_equals.3.gz
416
share/man/man3/oid_instanceof.3.gz
417
share/man/man3/oid_is_null.3.gz
418
share/man/man3/pmem_check_version.3.gz
419
share/man/man3/pmem_deep_drain.3.gz
420
share/man/man3/pmem_deep_flush.3.gz
421
share/man/man3/pmem_deep_persist.3.gz
422
share/man/man3/pmem_drain.3.gz
423
share/man/man3/pmem_errormsg.3.gz
424
share/man/man3/pmem_flush.3.gz
425
share/man/man3/pmem_has_auto_flush.3.gz
426
share/man/man3/pmem_has_hw_drain.3.gz
427
share/man/man3/pmem_is_pmem.3.gz
428
share/man/man3/pmem_map_file.3.gz
429
share/man/man3/pmem_memcpy_nodrain.3.gz
430
share/man/man3/pmem_memcpy_persist.3.gz
431
share/man/man3/pmem_memmove_nodrain.3.gz
432
share/man/man3/pmem_memmove_persist.3.gz
433
share/man/man3/pmem_memset_nodrain.3.gz
434
share/man/man3/pmem_memset_persist.3.gz
435
share/man/man3/pmem_msync.3.gz
436
share/man/man3/pmem_persist.3.gz
437
share/man/man3/pmem_unmap.3.gz
438
share/man/man3/pmemblk_bsize.3.gz
439
share/man/man3/pmemblk_check.3.gz
440
share/man/man3/pmemblk_check_version.3.gz
441
share/man/man3/pmemblk_close.3.gz
442
share/man/man3/pmemblk_create.3.gz
443
share/man/man3/pmemblk_errormsg.3.gz
444
share/man/man3/pmemblk_nblock.3.gz
445
share/man/man3/pmemblk_open.3.gz
446
share/man/man3/pmemblk_read.3.gz
447
share/man/man3/pmemblk_set_error.3.gz
448
share/man/man3/pmemblk_set_funcs.3.gz
449
share/man/man3/pmemblk_set_zero.3.gz
450
share/man/man3/pmemblk_write.3.gz
451
share/man/man3/pmemcto_aligned_alloc.3.gz
452
share/man/man3/pmemcto_calloc.3.gz
453
share/man/man3/pmemcto_check.3.gz
454
share/man/man3/pmemcto_check_version.3.gz
455
share/man/man3/pmemcto_close.3.gz
456
share/man/man3/pmemcto_create.3.gz
457
share/man/man3/pmemcto_errormsg.3.gz
458
share/man/man3/pmemcto_free.3.gz
459
share/man/man3/pmemcto_get_root_pointer.3.gz
460
share/man/man3/pmemcto_malloc.3.gz
461
share/man/man3/pmemcto_malloc_usable_size.3.gz
462
share/man/man3/pmemcto_open.3.gz
463
share/man/man3/pmemcto_realloc.3.gz
464
share/man/man3/pmemcto_set_funcs.3.gz
465
share/man/man3/pmemcto_set_root_pointer.3.gz
466
share/man/man3/pmemcto_stats_print.3.gz
467
share/man/man3/pmemcto_strdup.3.gz
468
share/man/man3/pmemcto_wcsdup.3.gz
469
share/man/man3/pmemlog_append.3.gz
470
share/man/man3/pmemlog_appendv.3.gz
471
share/man/man3/pmemlog_check.3.gz
472
share/man/man3/pmemlog_check_version.3.gz
473
share/man/man3/pmemlog_close.3.gz
474
share/man/man3/pmemlog_create.3.gz
475
share/man/man3/pmemlog_errormsg.3.gz
476
share/man/man3/pmemlog_nbyte.3.gz
477
share/man/man3/pmemlog_open.3.gz
478
share/man/man3/pmemlog_rewind.3.gz
479
share/man/man3/pmemlog_set_funcs.3.gz
480
share/man/man3/pmemlog_tell.3.gz
481
share/man/man3/pmemlog_walk.3.gz
482
share/man/man3/pmemobj_action.3.gz
483
share/man/man3/pmemobj_alloc.3.gz
484
share/man/man3/pmemobj_alloc_usable_size.3.gz
485
share/man/man3/pmemobj_cancel.3.gz
486
share/man/man3/pmemobj_check.3.gz
487
share/man/man3/pmemobj_check_version.3.gz
488
share/man/man3/pmemobj_close.3.gz
489
share/man/man3/pmemobj_cond_broadcast.3.gz
490
share/man/man3/pmemobj_cond_signal.3.gz
491
share/man/man3/pmemobj_cond_timedwait.3.gz
492
share/man/man3/pmemobj_cond_wait.3.gz
493
share/man/man3/pmemobj_cond_zero.3.gz
494
share/man/man3/pmemobj_create.3.gz
495
share/man/man3/pmemobj_ctl_exec.3.gz
496
share/man/man3/pmemobj_ctl_get.3.gz
497
share/man/man3/pmemobj_ctl_set.3.gz
498
share/man/man3/pmemobj_direct.3.gz
499
share/man/man3/pmemobj_drain.3.gz
500
share/man/man3/pmemobj_errormsg.3.gz
501
share/man/man3/pmemobj_first.3.gz
502
share/man/man3/pmemobj_flush.3.gz
503
share/man/man3/pmemobj_free.3.gz
504
share/man/man3/pmemobj_list_insert.3.gz
505
share/man/man3/pmemobj_list_insert_new.3.gz
506
share/man/man3/pmemobj_list_move.3.gz
507
share/man/man3/pmemobj_list_remove.3.gz
508
share/man/man3/pmemobj_memcpy_persist.3.gz
509
share/man/man3/pmemobj_memset_persist.3.gz
510
share/man/man3/pmemobj_mutex_lock.3.gz
511
share/man/man3/pmemobj_mutex_timedlock.3.gz
512
share/man/man3/pmemobj_mutex_trylock.3.gz
513
share/man/man3/pmemobj_mutex_unlock.3.gz
514
share/man/man3/pmemobj_mutex_zero.3.gz
515
share/man/man3/pmemobj_next.3.gz
516
share/man/man3/pmemobj_oid.3.gz
517
share/man/man3/pmemobj_open.3.gz
518
share/man/man3/pmemobj_persist.3.gz
519
share/man/man3/pmemobj_pool_by_oid.3.gz
520
share/man/man3/pmemobj_pool_by_ptr.3.gz
521
share/man/man3/pmemobj_publish.3.gz
522
share/man/man3/pmemobj_realloc.3.gz
523
share/man/man3/pmemobj_reserve.3.gz
524
share/man/man3/pmemobj_root.3.gz
525
share/man/man3/pmemobj_root_construct.3.gz
526
share/man/man3/pmemobj_root_size.3.gz
527
share/man/man3/pmemobj_rwlock_rdlock.3.gz
528
share/man/man3/pmemobj_rwlock_timedrdlock.3.gz
529
share/man/man3/pmemobj_rwlock_timedwrlock.3.gz
530
share/man/man3/pmemobj_rwlock_tryrdlock.3.gz
531
share/man/man3/pmemobj_rwlock_trywrlock.3.gz
532
share/man/man3/pmemobj_rwlock_unlock.3.gz
533
share/man/man3/pmemobj_rwlock_wrlock.3.gz
534
share/man/man3/pmemobj_rwlock_zero.3.gz
535
share/man/man3/pmemobj_set_funcs.3.gz
536
share/man/man3/pmemobj_set_value.3.gz
537
share/man/man3/pmemobj_strdup.3.gz
538
share/man/man3/pmemobj_tx_abort.3.gz
539
share/man/man3/pmemobj_tx_add_range.3.gz
540
share/man/man3/pmemobj_tx_add_range_direct.3.gz
541
share/man/man3/pmemobj_tx_alloc.3.gz
542
share/man/man3/pmemobj_tx_begin.3.gz
543
share/man/man3/pmemobj_tx_commit.3.gz
544
share/man/man3/pmemobj_tx_end.3.gz
545
share/man/man3/pmemobj_tx_errno.3.gz
546
share/man/man3/pmemobj_tx_free.3.gz
547
share/man/man3/pmemobj_tx_lock.3.gz
548
share/man/man3/pmemobj_tx_process.3.gz
549
share/man/man3/pmemobj_tx_publish.3.gz
550
share/man/man3/pmemobj_tx_realloc.3.gz
551
share/man/man3/pmemobj_tx_stage.3.gz
552
share/man/man3/pmemobj_tx_strdup.3.gz
553
share/man/man3/pmemobj_tx_wcsdup.3.gz
554
share/man/man3/pmemobj_tx_xadd_range.3.gz
555
share/man/man3/pmemobj_tx_xadd_range_direct.3.gz
556
share/man/man3/pmemobj_tx_xalloc.3.gz
557
share/man/man3/pmemobj_tx_zalloc.3.gz
558
share/man/man3/pmemobj_tx_zrealloc.3.gz
559
share/man/man3/pmemobj_type_num.3.gz
560
share/man/man3/pmemobj_wcsdup.3.gz
561
share/man/man3/pmemobj_xalloc.3.gz
562
share/man/man3/pmemobj_xreserve.3.gz
563
share/man/man3/pmemobj_zalloc.3.gz
564
share/man/man3/pmemobj_zrealloc.3.gz
565
share/man/man3/pmempool_check.3.gz
566
share/man/man3/pmempool_check_end.3.gz
567
share/man/man3/pmempool_check_init.3.gz
568
share/man/man3/pmempool_check_version.3.gz
569
share/man/man3/pmempool_errormsg.3.gz
570
share/man/man3/pmempool_rm.3.gz
571
share/man/man3/pmempool_sync.3.gz
572
share/man/man3/pmempool_transform.3.gz
573
share/man/man3/pobj_alloc.3.gz
574
share/man/man3/pobj_first.3.gz
575
share/man/man3/pobj_first_type_num.3.gz
576
share/man/man3/pobj_foreach.3.gz
577
share/man/man3/pobj_foreach_safe.3.gz
578
share/man/man3/pobj_foreach_safe_type.3.gz
579
share/man/man3/pobj_foreach_type.3.gz
580
share/man/man3/pobj_free.3.gz
581
share/man/man3/pobj_layout_begin.3.gz
582
share/man/man3/pobj_layout_end.3.gz
583
share/man/man3/pobj_layout_name.3.gz
584
share/man/man3/pobj_layout_root.3.gz
585
share/man/man3/pobj_layout_toid.3.gz
586
share/man/man3/pobj_layout_types_num.3.gz
587
share/man/man3/pobj_list_empty.3.gz
588
share/man/man3/pobj_list_entry.3.gz
589
share/man/man3/pobj_list_first.3.gz
590
share/man/man3/pobj_list_foreach.3.gz
591
share/man/man3/pobj_list_foreach_reverse.3.gz
592
share/man/man3/pobj_list_head.3.gz
593
share/man/man3/pobj_list_insert_after.3.gz
594
share/man/man3/pobj_list_insert_before.3.gz
595
share/man/man3/pobj_list_insert_head.3.gz
596
share/man/man3/pobj_list_insert_new_after.3.gz
597
share/man/man3/pobj_list_insert_new_before.3.gz
598
share/man/man3/pobj_list_insert_new_head.3.gz
599
share/man/man3/pobj_list_insert_new_tail.3.gz
600
share/man/man3/pobj_list_insert_tail.3.gz
601
share/man/man3/pobj_list_last.3.gz
602
share/man/man3/pobj_list_move_element_after.3.gz
603
share/man/man3/pobj_list_move_element_before.3.gz
604
share/man/man3/pobj_list_move_element_head.3.gz
605
share/man/man3/pobj_list_move_element_tail.3.gz
606
share/man/man3/pobj_list_next.3.gz
607
share/man/man3/pobj_list_prev.3.gz
608
share/man/man3/pobj_list_remove.3.gz
609
share/man/man3/pobj_list_remove_free.3.gz
610
share/man/man3/pobj_new.3.gz
611
share/man/man3/pobj_next.3.gz
612
share/man/man3/pobj_next_type_num.3.gz
613
share/man/man3/pobj_realloc.3.gz
614
share/man/man3/pobj_reserve_alloc.3.gz
615
share/man/man3/pobj_reserve_new.3.gz
616
share/man/man3/pobj_root.3.gz
617
share/man/man3/pobj_zalloc.3.gz
618
share/man/man3/pobj_znew.3.gz
619
share/man/man3/pobj_zrealloc.3.gz
620
share/man/man3/toid.3.gz
621
share/man/man3/toid_assign.3.gz
622
share/man/man3/toid_declare.3.gz
623
share/man/man3/toid_declare_root.3.gz
624
share/man/man3/toid_equals.3.gz
625
share/man/man3/toid_is_null.3.gz
626
share/man/man3/toid_offsetof.3.gz
627
share/man/man3/toid_type_num.3.gz
628
share/man/man3/toid_type_num_of.3.gz
629
share/man/man3/toid_typeof.3.gz
630
share/man/man3/toid_valid.3.gz
631
share/man/man3/tx_add.3.gz
632
share/man/man3/tx_add_direct.3.gz
633
share/man/man3/tx_add_field.3.gz
634
share/man/man3/tx_add_field_direct.3.gz
635
share/man/man3/tx_alloc.3.gz
636
share/man/man3/tx_begin.3.gz
637
share/man/man3/tx_begin_cb.3.gz
638
share/man/man3/tx_begin_param.3.gz
639
share/man/man3/tx_end.3.gz
640
share/man/man3/tx_finally.3.gz
641
share/man/man3/tx_free.3.gz
642
share/man/man3/tx_memcpy.3.gz
643
share/man/man3/tx_memset.3.gz
644
share/man/man3/tx_new.3.gz
645
share/man/man3/tx_onabort.3.gz
646
share/man/man3/tx_oncommit.3.gz
647
share/man/man3/tx_realloc.3.gz
648
share/man/man3/tx_set.3.gz
649
share/man/man3/tx_set_direct.3.gz
650
share/man/man3/tx_strdup.3.gz
651
share/man/man3/tx_wcsdup.3.gz
652
share/man/man3/tx_xadd.3.gz
653
share/man/man3/tx_xadd_direct.3.gz
654
share/man/man3/tx_xadd_field.3.gz
655
share/man/man3/tx_xadd_field_direct.3.gz
656
share/man/man3/tx_xalloc.3.gz
657
share/man/man3/tx_zalloc.3.gz
658
share/man/man3/tx_znew.3.gz
659
share/man/man3/tx_zrealloc.3.gz
660
share/man/man3/vmem_aligned_alloc.3.gz
661
share/man/man3/vmem_calloc.3.gz
662
share/man/man3/vmem_check.3.gz
663
share/man/man3/vmem_check_version.3.gz
664
share/man/man3/vmem_create.3.gz
665
share/man/man3/vmem_create_in_region.3.gz
666
share/man/man3/vmem_delete.3.gz
667
share/man/man3/vmem_errormsg.3.gz
668
share/man/man3/vmem_free.3.gz
669
share/man/man3/vmem_malloc.3.gz
670
share/man/man3/vmem_malloc_usable_size.3.gz
671
share/man/man3/vmem_realloc.3.gz
672
share/man/man3/vmem_set_funcs.3.gz
673
share/man/man3/vmem_stats_print.3.gz
674
share/man/man3/vmem_strdup.3.gz
675
share/man/man3/vmem_wcsdup.3.gz
676
share/man/man5/poolset.5.gz
677
share/man/man7/libpmem.7.gz
678
share/man/man7/libpmemblk.7.gz
679
share/man/man7/libpmemcto.7.gz
680
share/man/man7/libpmemlog.7.gz
681
share/man/man7/libpmemobj.7.gz
682
share/man/man7/libpmempool.7.gz
683
share/man/man7/libvmem.7.gz
684
share/man/man7/libvmmalloc.7.gz

Return to bug 232690