Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c3195063
Commit
c3195063
authored
Jan 22, 2008
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add DB_TXN_NOWAIT to fix builds
git-svn-id:
file:///svn/tokudb@1796
c7de825b-a66e-492c-adef-691d508d4ae1
parent
989bdd3f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
0 deletions
+12
-0
buildheader/db.h_4_1
buildheader/db.h_4_1
+2
-0
buildheader/db.h_4_3
buildheader/db.h_4_3
+2
-0
buildheader/db.h_4_4
buildheader/db.h_4_4
+2
-0
buildheader/db.h_4_5
buildheader/db.h_4_5
+2
-0
buildheader/db.h_4_6
buildheader/db.h_4_6
+2
-0
buildheader/make_db_h.c
buildheader/make_db_h.c
+2
-0
No files found.
buildheader/db.h_4_1
View file @
c3195063
...
...
@@ -92,6 +92,8 @@ typedef enum {
#define DB_RMW 1073741824
#define DB_DBT_APPMALLOC 1
#define DB_TXN_WRITE_NOSYNC 524288
#define DB_TXN_NOWAIT 2048
#define DB_TXN_SYNC 4096
#endif
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
...
...
buildheader/db.h_4_3
View file @
c3195063
...
...
@@ -94,6 +94,8 @@ typedef enum {
#define DB_DBT_APPMALLOC 1
#define DB_LOG_AUTOREMOVE 65536
#define DB_TXN_WRITE_NOSYNC 268435456
#define DB_TXN_NOWAIT 4096
#define DB_TXN_SYNC 8192
#endif
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
...
...
buildheader/db.h_4_4
View file @
c3195063
...
...
@@ -94,6 +94,8 @@ typedef enum {
#define DB_DBT_APPMALLOC 1
#define DB_LOG_AUTOREMOVE 262144
#define DB_TXN_WRITE_NOSYNC 1024
#define DB_TXN_NOWAIT 8192
#define DB_TXN_SYNC 16384
#endif
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
...
...
buildheader/db.h_4_5
View file @
c3195063
...
...
@@ -94,6 +94,8 @@ typedef enum {
#define DB_DBT_APPMALLOC 1
#define DB_LOG_AUTOREMOVE 524288
#define DB_TXN_WRITE_NOSYNC 2048
#define DB_TXN_NOWAIT 16384
#define DB_TXN_SYNC 32768
#endif
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
...
...
buildheader/db.h_4_6
View file @
c3195063
...
...
@@ -96,6 +96,8 @@ typedef enum {
#define DB_DBT_MULTIPLE 16
#define DB_LOG_AUTOREMOVE 524288
#define DB_TXN_WRITE_NOSYNC 4096
#define DB_TXN_NOWAIT 1024
#define DB_TXN_SYNC 16384
#endif
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
...
...
buildheader/make_db_h.c
View file @
c3195063
...
...
@@ -113,6 +113,8 @@ void print_defines (void) {
dodefine
(
DB_LOG_AUTOREMOVE
);
#endif
dodefine
(
DB_TXN_WRITE_NOSYNC
);
dodefine
(
DB_TXN_NOWAIT
);
dodefine
(
DB_TXN_SYNC
);
printf
(
"#endif
\n
"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment