Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

finding a tree like data structure for stack trace implementation #26

Open
philip-harr opened this issue Sep 23, 2019 · 2 comments
Open
Assignees
Labels
module:fasttrack performance performance could be better

Comments

@philip-harr
Copy link
Collaborator

A high-performant tree-like data structure is needed for the tracking of the stack traces of the threads in fasttrack.

@philip-harr
Copy link
Collaborator Author

an implementation with the adjacent_list of the boost graph library gets currently implemented

@fmoessbauer
Copy link
Member

One important thing to to keep in mind is that NO memory allocations must happen on each insertion of a node into the tree.
Additionally, the tree has to be stored in TLS (or in a large block of heap memory). To achieve that, a pooled allocator could be used (a blocked memory allocation, every xMB is ok IMO).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
module:fasttrack performance performance could be better
Projects
None yet
Development

No branches or pull requests

2 participants