RCCE_send.3 935 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .TH RCCE 3 2010-02-04 "RCCE MANPAGE" "RCCE Library"
  2. .SH NAME
  3. RCCE_send \- RCCE send message
  4. .SH SYNOPSIS
  5. .B #include <rcce.h>
  6. .sp
  7. .BI "int RCCE_send(char *" privbuf ", size_t" size ",int" ID );
  8. .SH DESCRIPTION
  9. .BR RCCE_send()
  10. sends an arbitrarily sized buffer (does not have to be a
  11. multiple of 32 bytes) of data from the private memory of
  12. the sending UE to the private memory of the receiving UE.
  13. Its parameters must be matched exactly by those on the
  14. receiving side. The call is blocking. Blocking means it
  15. will not complete until a matching receive has been posted.
  16. .TP 10
  17. .B privbuf
  18. Starting address (private memory) of data to be sent.
  19. .TP
  20. .B size
  21. Size of message in bytes.
  22. .TP
  23. .B ID
  24. Rank of target UE.
  25. .SH "RETURN VALUE"
  26. Upon successful completion
  27. .BR RCCE_send ()
  28. returns
  29. .BR RCCE_SUCCESS .
  30. .SH ERRORS
  31. Look in
  32. .BR rcce.h
  33. for additional error codes.
  34. .SH "SEE ALSO"
  35. rcce.h(5)
  36. .SH EXAMPLE
  37. .PP
  38. To be supplied.