Skip to content
New issue

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

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

Already on GitHub? # to your account

Use of correct federate ID in tracing of absent messages #248

Merged
merged 3 commits into from
Jul 6, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/federated/RTI/rti_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void handle_port_absent_message(federate_t* sending_federate, unsigned char* buf
tag_t tag = extract_tag(&(buffer[1 + 2 * sizeof(uint16_t)]));

if (_f_rti->tracing_enabled) {
tracepoint_rti_from_federate(_f_rti->trace, receive_PORT_ABS, federate_id, &tag);
tracepoint_rti_from_federate(_f_rti->trace, receive_PORT_ABS, sending_federate->enclave.id, &tag);
}

// Need to acquire the mutex lock to ensure that the thread handling
Expand Down