Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
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
Libraries
spdlog
Commits
c3757c99
Commit
c3757c99
authored
Sep 02, 2016
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remoed zf_log from bench
parent
2d64a1de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
84 deletions
+0
-84
bench/zf_log-bench-mt.cpp
bench/zf_log-bench-mt.cpp
+0
-56
bench/zf_log-bench.cpp
bench/zf_log-bench.cpp
+0
-28
No files found.
bench/zf_log-bench-mt.cpp
deleted
100644 → 0
View file @
2d64a1de
#include <thread>
#include <vector>
#include <atomic>
#include <cstdlib>
#include <unistd.h>
#include <fcntl.h>
#include <zf_log.c>
const
char
g_path
[]
=
"logs/zf_log.txt"
;
int
g_fd
;
static
void
output_callback
(
zf_log_message
*
msg
)
{
*
msg
->
p
=
'\n'
;
write
(
g_fd
,
msg
->
buf
,
msg
->
p
-
msg
->
buf
+
1
);
}
using
namespace
std
;
int
main
(
int
argc
,
char
*
argv
[])
{
g_fd
=
open
(
g_path
,
O_APPEND
|
O_CREAT
|
O_WRONLY
);
if
(
0
>
g_fd
)
{
ZF_LOGE_AUX
(
ZF_LOG_STDERR
,
"Failed to open log file: %s"
,
g_path
);
return
-
1
;
}
zf_log_set_output_callback
(
ZF_LOG_PUT_STD
,
output_callback
);
int
thread_count
=
10
;
if
(
argc
>
1
)
thread_count
=
std
::
atoi
(
argv
[
1
]);
int
howmany
=
1000000
;
std
::
atomic
<
int
>
msg_counter
{
0
};
vector
<
thread
>
threads
;
for
(
int
t
=
0
;
t
<
thread_count
;
++
t
)
{
threads
.
push_back
(
std
::
thread
([
&
]()
{
while
(
true
)
{
int
counter
=
++
msg_counter
;
if
(
counter
>
howmany
)
break
;
ZF_LOGI
(
"zf_log message #%i: This is some text for your pleasure"
,
counter
);
}
}));
}
for
(
auto
&
t
:
threads
)
{
t
.
join
();
};
close
(
g_fd
);
return
0
;
}
bench/zf_log-bench.cpp
deleted
100644 → 0
View file @
2d64a1de
#include <stdio.h>
#include <zf_log.c>
const
char
g_path
[]
=
"logs/zf_log.txt"
;
static
FILE
*
g_f
;
static
void
output_callback
(
zf_log_message
*
msg
)
{
*
msg
->
p
=
'\n'
;
fwrite
(
msg
->
buf
,
msg
->
p
-
msg
->
buf
+
1
,
1
,
g_f
);
}
int
main
(
int
,
char
*
[])
{
g_f
=
fopen
(
g_path
,
"wb"
);
if
(
!
g_f
)
{
ZF_LOGE_AUX
(
ZF_LOG_STDERR
,
"Failed to open log file: %s"
,
g_path
);
return
-
1
;
}
zf_log_set_output_callback
(
ZF_LOG_PUT_STD
,
output_callback
);
const
int
howmany
=
1000000
;
for
(
int
i
=
0
;
i
<
howmany
;
++
i
)
ZF_LOGI
(
"zf_log message #%i: This is some text for your pleasure"
,
i
);
fclose
(
g_f
);
return
0
;
}
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