mirror of
https://github.com/ceph/ceph
synced 2025-03-09 01:38:58 +00:00
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@139 29311d96-e01e-0410-9327-a35deaab8ce9
12 lines
470 B
C
12 lines
470 B
C
#include "msg/Message.h"
|
|
|
|
// send the message, expecting no response. threads other than the
|
|
// MPI thread use this function; if the MPI thread uses this function
|
|
// it could deadlock: this function could wait for the out queue to be
|
|
// emptied, but only the MPI thread can empty it.
|
|
void obfsmpi_send(Message *m)
|
|
|
|
// send the message to a server and wait for the response. threads
|
|
// other than the MPI thread use this function.
|
|
Message *obfsmpi_sendrecv(Message *m)
|