Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
glog
Commits
2a6df662
Commit
2a6df662
authored
Aug 09, 2017
by
Shinichiro Hamaji
Committed by
GitHub
Aug 09, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #228 from sergiud/dll-export-fix
Fix for missing exports (fixes #227)
parents
246a5896
1bfae383
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
logging.h.in
src/glog/logging.h.in
+2
-1
stacktrace.h
src/stacktrace.h
+2
-1
stacktrace_windows-inl.h
src/stacktrace_windows-inl.h
+0
-1
symbolize.h
src/symbolize.h
+1
-1
No files found.
src/glog/logging.h.in
View file @
2a6df662
...
...
@@ -931,7 +931,8 @@ struct CompileAssert {
struct CrashReason;
// Returns true if FailureSignalHandler is installed.
bool IsFailureSignalHandlerInstalled();
// Needs to be exported since it's used by the signalhandler_unittest.
GOOGLE_GLOG_DLL_DECL bool IsFailureSignalHandlerInstalled();
} // namespace glog_internal_namespace_
#define LOG_EVERY_N(severity, n) \
...
...
src/stacktrace.h
View file @
2a6df662
...
...
@@ -34,6 +34,7 @@
#define BASE_STACKTRACE_H_
#include "config.h"
#include "glog/logging.h"
_START_GOOGLE_NAMESPACE_
...
...
@@ -53,7 +54,7 @@ _START_GOOGLE_NAMESPACE_
// .... ...
//
// "result" must not be NULL.
extern
int
GetStackTrace
(
void
**
result
,
int
max_depth
,
int
skip_count
);
GOOGLE_GLOG_DLL_DECL
int
GetStackTrace
(
void
**
result
,
int
max_depth
,
int
skip_count
);
_END_GOOGLE_NAMESPACE_
...
...
src/stacktrace_windows-inl.h
View file @
2a6df662
...
...
@@ -38,7 +38,6 @@
_START_GOOGLE_NAMESPACE_
GOOGLE_GLOG_DLL_DECL
int
GetStackTrace
(
void
**
result
,
int
max_depth
,
int
skip_count
)
{
if
(
max_depth
>
64
)
{
max_depth
=
64
;
...
...
src/symbolize.h
View file @
2a6df662
...
...
@@ -148,7 +148,7 @@ _START_GOOGLE_NAMESPACE_
// symbol name to "out". The symbol name is demangled if possible
// (supports symbols generated by GCC 3.x or newer). Otherwise,
// returns false.
bool
Symbolize
(
void
*
pc
,
char
*
out
,
int
out_size
);
GOOGLE_GLOG_DLL_DECL
bool
Symbolize
(
void
*
pc
,
char
*
out
,
int
out_size
);
_END_GOOGLE_NAMESPACE_
...
...
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