ceph/ceph/client/msgthread.h
sage 96b2c2f392 *** empty log message ***
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@139 29311d96-e01e-0410-9327-a35deaab8ce9
2005-04-07 03:52:32 +00:00

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)