231a232
> (request->ruby_request.m_Type == RubyRequestType_ATOMIC) ||
383a385
> (request->ruby_request.m_Type == RubyRequestType_ATOMIC) ||
650a653
> case RubyRequestType_ATOMIC:
674,675c677,680
< int proc_id = request.pkt->req->hasContextId() ?
< request.pkt->req->contextId() : -1;
---
> int proc_id = -1;
> if (request.pkt != NULL && request.pkt->req->hasContextId()) {
> proc_id = request.pkt->req->contextId();
> }