mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-10 02:54:12 +08:00
mdbx: update links after move the repo.
Change-Id: Ib9d0bbc02f628ee5df673f419cd6152785e19573
This commit is contained in:
parent
a783325a6d
commit
ecbc0b9c12
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
# GNU Makefile for libmdbx (reliable lightning memory-mapped DB library for Linux).
|
# GNU Makefile for libmdbx (reliable lightning memory-mapped DB library for Linux).
|
||||||
# https://github.com/ReOpen/libmdbx
|
# https://github.com/leo-yuriev/libmdbx
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# Configuration. The compiler options must enable threaded compilation.
|
# Configuration. The compiler options must enable threaded compilation.
|
||||||
|
@ -3,9 +3,9 @@ libmdbx
|
|||||||
Extended LMDB, aka "Расширенная LMDB".
|
Extended LMDB, aka "Расширенная LMDB".
|
||||||
|
|
||||||
*The Future will Positive. Всё будет хорошо.*
|
*The Future will Positive. Всё будет хорошо.*
|
||||||
[![Build Status](https://travis-ci.org/ReOpen/libmdbx.svg?branch=stable%2F0.0)](https://travis-ci.org/ReOpen/libmdbx)
|
[![Build Status](https://travis-ci.org/leo-yuriev/libmdbx.svg?branch=stable%2F0.0)](https://travis-ci.org/leo-yuriev/libmdbx)
|
||||||
|
|
||||||
English version by Google [is here](https://translate.googleusercontent.com/translate_c?act=url&ie=UTF8&sl=ru&tl=en&u=https://github.com/ReOpen/libmdbx/tree/stable%2F0.0).
|
English version by Google [is here](https://translate.googleusercontent.com/translate_c?act=url&ie=UTF8&sl=ru&tl=en&u=https://github.com/leo-yuriev/libmdbx/tree/stable%2F0.0).
|
||||||
|
|
||||||
|
|
||||||
## Кратко
|
## Кратко
|
||||||
@ -28,7 +28,7 @@ _libmdbx_ является потомком "Lightning Memory-Mapped Database",
|
|||||||
известной под аббревиатурой
|
известной под аббревиатурой
|
||||||
[LMDB](https://en.wikipedia.org/wiki/Lightning_Memory-Mapped_Database).
|
[LMDB](https://en.wikipedia.org/wiki/Lightning_Memory-Mapped_Database).
|
||||||
Изначально доработка производилась в составе проекта
|
Изначально доработка производилась в составе проекта
|
||||||
[ReOpenLDAP](https://github.com/ReOpen/ReOpenLDAP). Примерно за год
|
[ReOpenLDAP](https://github.com/leo-yuriev/ReOpenLDAP). Примерно за год
|
||||||
работы внесенные изменения приобрели самостоятельную ценность. Осенью
|
работы внесенные изменения приобрели самостоятельную ценность. Осенью
|
||||||
2015 доработанный движок был выделен в отдельный проект, который был
|
2015 доработанный движок был выделен в отдельный проект, который был
|
||||||
[представлен на конференции Highload++
|
[представлен на конференции Highload++
|
||||||
|
2
lmdb.h
2
lmdb.h
@ -212,7 +212,7 @@ typedef int mdb_filehandle_t;
|
|||||||
#define MDB_VERSION_DATE "2017-02-17"
|
#define MDB_VERSION_DATE "2017-02-17"
|
||||||
|
|
||||||
/** A stringifier for the version info */
|
/** A stringifier for the version info */
|
||||||
#define MDB_VERSTR(a,b,c,d) "MDBX " #a "." #b "." #c ": (" d ", https://github.com/ReOpen/libmdbx)"
|
#define MDB_VERSTR(a,b,c,d) "MDBX " #a "." #b "." #c ": (" d ", https://github.com/leo-yuriev/libmdbx)"
|
||||||
|
|
||||||
/** A helper for the stringifier macro */
|
/** A helper for the stringifier macro */
|
||||||
#define MDB_VERFOO(a,b,c,d) MDB_VERSTR(a,b,c,d)
|
#define MDB_VERFOO(a,b,c,d) MDB_VERSTR(a,b,c,d)
|
||||||
|
4
mdb.c
4
mdb.c
@ -1048,7 +1048,7 @@ typedef struct MDB_pgstate {
|
|||||||
} MDB_pgstate;
|
} MDB_pgstate;
|
||||||
|
|
||||||
/** Context for deferred cleanup of reader's threads.
|
/** Context for deferred cleanup of reader's threads.
|
||||||
* to avoid https://github.com/ReOpen/ReOpenLDAP/issues/48 */
|
* to avoid https://github.com/leo-yuriev/ReOpenLDAP/issues/48 */
|
||||||
typedef struct MDBX_rthc {
|
typedef struct MDBX_rthc {
|
||||||
struct MDBX_rthc *rc_next;
|
struct MDBX_rthc *rc_next;
|
||||||
pthread_t rc_thread;
|
pthread_t rc_thread;
|
||||||
@ -4624,7 +4624,7 @@ void mdbx_rthc_dtor(void)
|
|||||||
* TSD-деструкторах и поэтому может выгрузить lib.so до того как
|
* TSD-деструкторах и поэтому может выгрузить lib.so до того как
|
||||||
* отработали все деструкторы.
|
* отработали все деструкторы.
|
||||||
* - Исходное проявление проблемы было зафиксировано
|
* - Исходное проявление проблемы было зафиксировано
|
||||||
* в https://github.com/ReOpen/ReOpenLDAP/issues/48
|
* в https://github.com/leo-yuriev/ReOpenLDAP/issues/48
|
||||||
*
|
*
|
||||||
* Предыдущее решение посредством выделяемого динамически MDB_rthc
|
* Предыдущее решение посредством выделяемого динамически MDB_rthc
|
||||||
* было не удачным, так как порождало либо утечку памяти,
|
* было не удачным, так как порождало либо утечку памяти,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user