This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// be sure to choose an illegal address as a sentinel value
Arrays.fill(contextBaseOffsets, Long.MIN_VALUE);
Expand Down
Expand Up
@@ -238,14 +236,14 @@ public void removeThread() {
*/
public void setContext(long spanId, long rootSpanId) {
int tid = TID.get();
if (isJDK8) {
setContextJDK8(tid, spanId, rootSpanId);
if (UNSAFE != null) {
setContextUnsafe(tid, spanId, rootSpanId);
} else {
setContextByteBuffer(tid, spanId, rootSpanId);
}
}
private void setContextJDK8(int tid, long spanId, long rootSpanId) {
private void setContextUnsafe(int tid, long spanId, long rootSpanId) {
if (contextBaseOffsets == null) {
return;
}
Expand Down
Expand Up
@@ -313,14 +311,14 @@ public void clearContext() {
*/
public void setContextValue(int offset, int value) {
int tid = TID.get();
if (isJDK8) {
setContextJDK8(tid, offset, value);
if (UNSAFE != null) {
setContextUnsafe(tid, offset, value);
} else {
setContextByteBuffer(tid, offset, value);
}
}
private void setContextJDK8(int tid, int offset, int value) {
private void setContextUnsafe(int tid, int offset, int value) {
if (contextBaseOffsets == null) {
return;
}
Expand All
@@ -344,14 +342,14 @@ public void setContextByteBuffer(int tid, int offset, int value) {
void copyTags(int[] snapshot) {
int tid = TID.get();
if (isJDK8) {
copyTagsJDK8(tid, snapshot);
if (UNSAFE != null) {
copyTagsUnsafe(tid, snapshot);
} else {
copyTagsByteBuffer(tid, snapshot);
}
}
void copyTagsJDK8(int tid, int[] snapshot) {
void copyTagsUnsafe(int tid, int[] snapshot) {
if (contextBaseOffsets == null) {
return;
}
Expand Down
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Unify context propagation #231
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
Uh oh!
There was an error while loading. Please reload this page.
Unify context propagation #231
Filter by extension
Viewed files
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing