| 4075 | |
| 4076 | |
| 4077 | void post(const UPID& to, const string& name, const char* data, size_t length) |
| 4078 | { |
| 4079 | process::initialize(); |
| 4080 | |
| 4081 | if (!to) { |
| 4082 | return; |
| 4083 | } |
| 4084 | |
| 4085 | // Transport outgoing message. |
| 4086 | transport(UPID(), to, name, data, length); |
| 4087 | } |
| 4088 | |
| 4089 | |
| 4090 | void post(const UPID& from, |
nothing calls this directly
no test coverage detected