mdbx: update links after move the repo.

Change-Id: Ib9d0bbc02f628ee5df673f419cd6152785e19573
This commit is contained in:
Leo Yuriev 2017-08-12 10:48:50 +03:00
parent a783325a6d
commit ecbc0b9c12
4 changed files with 7 additions and 7 deletions

View File

@ -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.

View File

@ -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
View File

@ -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
View File

@ -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
* было не удачным, так как порождало либо утечку памяти, * было не удачным, так как порождало либо утечку памяти,