Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
da755639
Commit
da755639
authored
13 years ago
by
Pavel Cherenkov
Browse files
Options
Downloads
Patches
Plain Diff
Minor stylistic changes
parent
eec9eeb6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/log_io.m
+1
-1
1 addition, 1 deletion
core/log_io.m
core/tarantool.m
+3
-3
3 additions, 3 deletions
core/tarantool.m
include/log_io.h
+1
-1
1 addition, 1 deletion
include/log_io.h
with
5 additions
and
5 deletions
core/log_io.m
+
1
−
1
View file @
da755639
...
...
@@ -76,7 +76,7 @@ static u_int32_t (*calc_crc32c)(u_int32_t crc, const unsigned char *buf,
unsigned int len) = NULL;
void
ma
r
ch_setup_crc32 ()
mach_setup_crc32 ()
{
#if defined (__i386__) || defined (__x86_64__)
calc_crc32c = cpu_has (cpuf_sse4_2) ? &crc32c_hw : &crc32c;
...
...
This diff is collapsed.
Click to expand it.
core/tarantool.m
+
3
−
3
View file @
da755639
...
...
@@ -394,9 +394,9 @@ initialize_minimal()
}
inline
static
void
ma
r
ch_init
()
mach_init
()
{
ma
r
ch_setup_crc32
();
mach_setup_crc32
();
}
int
...
...
@@ -419,7 +419,7 @@ main(int argc, char **argv)
master_pid
=
getpid
();
stat_init
();
palloc_init
();
ma
r
ch_init
();
mach_init
();
#ifdef HAVE_BFD
symbols_load
(
argv
[
0
]);
...
...
This diff is collapsed.
Click to expand it.
include/log_io.h
+
1
−
1
View file @
da755639
...
...
@@ -146,7 +146,7 @@ static inline struct row_v11 *row_v11(const struct tbuf *t)
return
(
struct
row_v11
*
)
t
->
data
;
}
void
ma
r
ch_setup_crc32
();
void
mach_setup_crc32
();
struct
tbuf
*
convert_to_v11
(
struct
tbuf
*
orig
,
u16
tag
,
u64
cookie
,
i64
lsn
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment