| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .TH RCCE 3 2010-02-04 "RCCE MANPAGE" "RCCE Library"
- .SH NAME
- RCCE_send \- RCCE send message
- .SH SYNOPSIS
- .B #include <rcce.h>
- .sp
- .BI "int RCCE_send(char *" privbuf ", size_t" size ",int" ID );
- .SH DESCRIPTION
- .BR RCCE_send()
- sends an arbitrarily sized buffer (does not have to be a
- multiple of 32 bytes) of data from the private memory of
- the sending UE to the private memory of the receiving UE.
- Its parameters must be matched exactly by those on the
- receiving side. The call is blocking. Blocking means it
- will not complete until a matching receive has been posted.
- .TP 10
- .B privbuf
- Starting address (private memory) of data to be sent.
- .TP
- .B size
- Size of message in bytes.
- .TP
- .B ID
- Rank of target UE.
- .SH "RETURN VALUE"
- Upon successful completion
- .BR RCCE_send ()
- returns
- .BR RCCE_SUCCESS .
- .SH ERRORS
- Look in
- .BR rcce.h
- for additional error codes.
- .SH "SEE ALSO"
- rcce.h(5)
- .SH EXAMPLE
- .PP
- To be supplied.
|