Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
e4db6767
Commit
e4db6767
authored
12 years ago
by
William Todd Stinson
Browse files
Options
Downloads
Patches
Plain Diff
Re-enabling tcmalloc in the build.
parent
55d7310d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/cmake/GooglePerfTools.cmake
+1
-1
1 addition, 1 deletion
indra/cmake/GooglePerfTools.cmake
indra/llcommon/llmemory.h
+1
-1
1 addition, 1 deletion
indra/llcommon/llmemory.h
with
2 additions
and
2 deletions
indra/cmake/GooglePerfTools.cmake
+
1
−
1
View file @
e4db6767
...
...
@@ -3,7 +3,7 @@ include(Prebuilt)
# If you want to enable or disable TCMALLOC in viewer builds, this is the place.
# set ON or OFF as desired.
set
(
USE_TCMALLOC O
FF
)
set
(
USE_TCMALLOC O
N
)
if
(
STANDALONE
)
include
(
FindGooglePerfTools
)
...
...
This diff is collapsed.
Click to expand it.
indra/llcommon/llmemory.h
+
1
−
1
View file @
e4db6767
...
...
@@ -90,7 +90,7 @@ inline void* ll_aligned_realloc_16(void* ptr, size_t size, size_t old_size) // r
#else // USE_TCMALLOC
// ll_aligned_foo_16 are not needed with tcmalloc
#define ll_aligned_malloc_16 malloc
#define ll_aligned_realloc_16 realloc
#define ll_aligned_realloc_16
(a,b,c)
realloc
(a,b)
#define ll_aligned_free_16 free
#endif // USE_TCMALLOC
...
...
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