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
2c12ddc1
Commit
2c12ddc1
authored
Oct 04, 2007
by
aelkin/elkin@koti.dsl.inet.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
manual merge
parent
4c6e14ce
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
sql/log.h
sql/log.h
+7
-1
No files found.
sql/log.h
View file @
2c12ddc1
...
...
@@ -130,7 +130,13 @@ typedef struct st_log_info
my_off_t
pos
;
bool
fatal
;
// if the purge happens to give us a negative offset
pthread_mutex_t
lock
;
st_log_info
()
:
fatal
(
0
)
{
pthread_mutex_init
(
&
lock
,
MY_MUTEX_INIT_FAST
);}
st_log_info
()
:
index_file_offset
(
0
),
index_file_start_offset
(
0
),
pos
(
0
),
fatal
(
0
)
{
log_file_name
[
0
]
=
'\0'
;
pthread_mutex_init
(
&
lock
,
MY_MUTEX_INIT_FAST
);
}
~
st_log_info
()
{
pthread_mutex_destroy
(
&
lock
);}
}
LOG_INFO
;
...
...
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