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