MCPcopy Create free account
hub / github.com/apache/arrow / Send

Method Send

cpp/src/arrow/util/io_util.cc:1311–1319  ·  view source on GitHub ↗

XXX return StatusCode from here?

Source from the content-addressed store, hash-verified

1309
1310 // XXX return StatusCode from here?
1311 void Send(uint64_t payload) override {
1312 if (signal_safe_) {
1313 int saved_errno = errno;
1314 DoSend(payload);
1315 errno = saved_errno;
1316 } else {
1317 DoSend(payload);
1318 }
1319 }
1320
1321 Status Shutdown() override {
1322 please_shutdown_.store(true);

Callers 4

DoHandleSignalMethod · 0.80
HandleSignalMethod · 0.80
TEST_FFunction · 0.80
DoHandleSignalMethod · 0.80

Calls

no outgoing calls

Tested by 2

HandleSignalMethod · 0.64
TEST_FFunction · 0.64