1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cmUVProcessChain.h"
#include <array>
#include <csignal>
#include <cstdio>
#include <istream> // IWYU pragma: keep
#include <utility>
#include <cm/memory>
#include <cm3p/uv.h>
#include "cm_fileno.hxx"
#include "cmGetPipes.h"
#include "cmUVHandlePtr.h"
struct cmUVProcessChain::InternalData
{
struct StreamData
{
int BuiltinStream = -1;
uv_stdio_container_t Stdio;
};
struct ProcessData
{
cmUVProcessChain::InternalData* Data;
cm::uv_process_ptr Process;
cm::uv_pipe_ptr InputPipe;
cm::uv_pipe_ptr OutputPipe;
Status ProcessStatus;
void Finish();
};
cmUVProcessChainBuilder const* Builder = nullptr;
bool Valid = false;
cm::uv_loop_ptr BuiltinLoop;
uv_loop_t* Loop;
StreamData InputStreamData;
StreamData OutputStreamData;
StreamData ErrorStreamData;
cm::uv_pipe_ptr TempOutputPipe;
cm::uv_pipe_ptr TempErrorPipe;
unsigned int ProcessesCompleted = 0;
std::vector<std::unique_ptr<ProcessData>> Processes;
bool Prepare(cmUVProcessChainBuilder const* builder);
void SpawnProcess(
std::size_t index,
cmUVProcessChainBuilder::ProcessConfiguration const& config, bool first,
bool last);
void Finish();
};
cmUVProcessChainBuilder::cmUVProcessChainBuilder() = default;
cmUVProcessChainBuilder& cmUVProcessChainBuilder::AddCommand(
std::vector<std::string> arguments)
{
if (!arguments.empty()) {
this->Processes.emplace_back();
this->Processes.back().Arguments = std::move(arguments);
}
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetBuiltinLoop()
{
this->Loop = nullptr;
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetExternalLoop(
uv_loop_t& loop)
{
this->Loop = &loop;
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetNoStream(Stream stdio)
{
switch (stdio) {
case Stream_INPUT:
case Stream_OUTPUT:
case Stream_ERROR: {
auto& streamData = this->Stdio[stdio];
streamData.Type = None;
break;
}
}
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetBuiltinStream(
Stream stdio)
{
switch (stdio) {
case Stream_INPUT:
// FIXME
break;
case Stream_OUTPUT:
case Stream_ERROR: {
auto& streamData = this->Stdio[stdio];
streamData.Type = Builtin;
break;
}
}
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetExternalStream(
Stream stdio, int fd)
{
switch (stdio) {
case Stream_INPUT:
case Stream_OUTPUT:
case Stream_ERROR: {
auto& streamData = this->Stdio[stdio];
streamData.Type = External;
streamData.FileDescriptor = fd;
break;
}
}
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetExternalStream(
Stream stdio, FILE* stream)
{
int fd = cm_fileno(stream);
if (fd >= 0) {
return this->SetExternalStream(stdio, fd);
}
return this->SetNoStream(stdio);
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetMergedBuiltinStreams()
{
this->MergedBuiltinStreams = true;
return this->SetBuiltinStream(Stream_OUTPUT).SetBuiltinStream(Stream_ERROR);
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetWorkingDirectory(
std::string dir)
{
this->WorkingDirectory = std::move(dir);
return *this;
}
cmUVProcessChainBuilder& cmUVProcessChainBuilder::SetDetached()
{
this->Detached = true;
return *this;
}
uv_loop_t* cmUVProcessChainBuilder::GetLoop() const
{
return this->Loop;
}
cmUVProcessChain cmUVProcessChainBuilder::Start() const
{
cmUVProcessChain chain;
if (!chain.Data->Prepare(this)) {
return chain;
}
for (std::size_t i = 0; i < this->Processes.size(); i++) {
chain.Data->SpawnProcess(i, this->Processes[i], i == 0,
i == this->Processes.size() - 1);
}
chain.Data->Finish();
return chain;
}
bool cmUVProcessChain::InternalData::Prepare(
cmUVProcessChainBuilder const* builder)
{
this->Builder = builder;
if (this->Builder->Loop) {
this->Loop = this->Builder->Loop;
} else {
this->BuiltinLoop.init();
this->Loop = this->BuiltinLoop;
}
auto const& input =
this->Builder->Stdio[cmUVProcessChainBuilder::Stream_INPUT];
auto& inputData = this->InputStreamData;
switch (input.Type) {
case cmUVProcessChainBuilder::None:
inputData.Stdio.flags = UV_IGNORE;
break;
case cmUVProcessChainBuilder::Builtin: {
// FIXME
break;
}
case cmUVProcessChainBuilder::External:
inputData.Stdio.flags = UV_INHERIT_FD;
inputData.Stdio.data.fd = input.FileDescriptor;
break;
}
auto const& error =
this->Builder->Stdio[cmUVProcessChainBuilder::Stream_ERROR];
auto& errorData = this->ErrorStreamData;
switch (error.Type) {
case cmUVProcessChainBuilder::None:
errorData.Stdio.flags = UV_IGNORE;
break;
case cmUVProcessChainBuilder::Builtin: {
int pipeFd[2];
if (cmGetPipes(pipeFd) < 0) {
return false;
}
errorData.BuiltinStream = pipeFd[0];
errorData.Stdio.flags = UV_INHERIT_FD;
errorData.Stdio.data.fd = pipeFd[1];
if (this->TempErrorPipe.init(*this->Loop, 0) < 0) {
return false;
}
if (uv_pipe_open(this->TempErrorPipe, errorData.Stdio.data.fd) < 0) {
return false;
}
break;
}
case cmUVProcessChainBuilder::External:
errorData.Stdio.flags = UV_INHERIT_FD;
errorData.Stdio.data.fd = error.FileDescriptor;
break;
}
auto const& output =
this->Builder->Stdio[cmUVProcessChainBuilder::Stream_OUTPUT];
auto& outputData = this->OutputStreamData;
switch (output.Type) {
case cmUVProcessChainBuilder::None:
outputData.Stdio.flags = UV_IGNORE;
break;
case cmUVProcessChainBuilder::Builtin:
if (this->Builder->MergedBuiltinStreams) {
outputData.BuiltinStream = errorData.BuiltinStream;
outputData.Stdio.flags = UV_INHERIT_FD;
outputData.Stdio.data.fd = errorData.Stdio.data.fd;
} else {
int pipeFd[2];
if (cmGetPipes(pipeFd) < 0) {
return false;
}
outputData.BuiltinStream = pipeFd[0];
outputData.Stdio.flags = UV_INHERIT_FD;
outputData.Stdio.data.fd = pipeFd[1];
if (this->TempOutputPipe.init(*this->Loop, 0) < 0) {
return false;
}
if (uv_pipe_open(this->TempOutputPipe, outputData.Stdio.data.fd) < 0) {
return false;
}
}
break;
case cmUVProcessChainBuilder::External:
outputData.Stdio.flags = UV_INHERIT_FD;
outputData.Stdio.data.fd = output.FileDescriptor;
break;
}
bool first = true;
for (std::size_t i = 0; i < this->Builder->Processes.size(); i++) {
this->Processes.emplace_back(cm::make_unique<ProcessData>());
auto& process = *this->Processes.back();
process.Data = this;
process.ProcessStatus.Finished = false;
if (!first) {
auto& prevProcess = *this->Processes[i - 1];
int pipeFd[2];
if (cmGetPipes(pipeFd) < 0) {
return false;
}
if (prevProcess.OutputPipe.init(*this->Loop, 0) < 0) {
return false;
}
if (uv_pipe_open(prevProcess.OutputPipe, pipeFd[1]) < 0) {
return false;
}
if (process.InputPipe.init(*this->Loop, 0) < 0) {
return false;
}
if (uv_pipe_open(process.InputPipe, pipeFd[0]) < 0) {
return false;
}
}
first = false;
}
return true;
}
void cmUVProcessChain::InternalData::SpawnProcess(
std::size_t index,
cmUVProcessChainBuilder::ProcessConfiguration const& config, bool first,
bool last)
{
auto& process = *this->Processes[index];
auto options = uv_process_options_t();
// Bounds were checked at add time, first element is guaranteed to exist
options.file = config.Arguments[0].c_str();
std::vector<char const*> arguments;
arguments.reserve(config.Arguments.size());
for (auto const& arg : config.Arguments) {
arguments.push_back(arg.c_str());
}
arguments.push_back(nullptr);
options.args = const_cast<char**>(arguments.data());
options.flags = UV_PROCESS_WINDOWS_HIDE;
if (this->Builder->Detached) {
options.flags |= UV_PROCESS_DETACHED;
}
#if UV_VERSION_MAJOR > 1 || \
(UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR >= 48) || \
!defined(CMAKE_USE_SYSTEM_LIBUV)
options.flags |= UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME;
#endif
#if UV_VERSION_MAJOR > 1 || !defined(CMAKE_USE_SYSTEM_LIBUV)
options.flags |= UV_PROCESS_WINDOWS_USE_PARENT_ERROR_MODE;
#endif
if (!this->Builder->WorkingDirectory.empty()) {
options.cwd = this->Builder->WorkingDirectory.c_str();
}
std::array<uv_stdio_container_t, 3> stdio;
if (first) {
stdio[0] = this->InputStreamData.Stdio;
} else {
stdio[0] = uv_stdio_container_t();
stdio[0].flags = UV_INHERIT_STREAM;
stdio[0].data.stream = process.InputPipe;
}
if (last) {
stdio[1] = this->OutputStreamData.Stdio;
} else {
stdio[1] = uv_stdio_container_t();
stdio[1].flags = UV_INHERIT_STREAM;
stdio[1].data.stream = process.OutputPipe;
}
stdio[2] = this->ErrorStreamData.Stdio;
options.stdio = stdio.data();
options.stdio_count = 3;
options.exit_cb = [](uv_process_t* handle, int64_t exitStatus,
int termSignal) {
auto* processData = static_cast<ProcessData*>(handle->data);
processData->ProcessStatus.ExitStatus = exitStatus;
processData->ProcessStatus.TermSignal = termSignal;
processData->Finish();
};
if ((process.ProcessStatus.SpawnResult =
process.Process.spawn(*this->Loop, options, &process)) < 0) {
process.Finish();
}
if (this->Builder->Detached) {
uv_unref((uv_handle_t*)process.Process);
}
process.InputPipe.reset();
process.OutputPipe.reset();
}
void cmUVProcessChain::InternalData::Finish()
{
this->TempOutputPipe.reset();
this->TempErrorPipe.reset();
this->Valid = true;
}
cmUVProcessChain::cmUVProcessChain()
: Data(cm::make_unique<InternalData>())
{
}
cmUVProcessChain::cmUVProcessChain(cmUVProcessChain&& other) noexcept
: Data(std::move(other.Data))
{
}
cmUVProcessChain::~cmUVProcessChain() = default;
cmUVProcessChain& cmUVProcessChain::operator=(
cmUVProcessChain&& other) noexcept
{
this->Data = std::move(other.Data);
return *this;
}
uv_loop_t& cmUVProcessChain::GetLoop()
{
return *this->Data->Loop;
}
int cmUVProcessChain::OutputStream()
{
return this->Data->OutputStreamData.BuiltinStream;
}
int cmUVProcessChain::ErrorStream()
{
return this->Data->ErrorStreamData.BuiltinStream;
}
bool cmUVProcessChain::Valid() const
{
return this->Data->Valid;
}
bool cmUVProcessChain::Wait(uint64_t milliseconds)
{
bool timeout = false;
cm::uv_timer_ptr timer;
if (milliseconds > 0) {
timer.init(*this->Data->Loop, &timeout);
timer.start(
[](uv_timer_t* handle) {
auto* timeoutPtr = static_cast<bool*>(handle->data);
*timeoutPtr = true;
},
milliseconds, 0);
}
while (!timeout &&
this->Data->ProcessesCompleted < this->Data->Processes.size()) {
uv_run(this->Data->Loop, UV_RUN_ONCE);
}
return !timeout;
}
std::vector<cmUVProcessChain::Status const*> cmUVProcessChain::GetStatus()
const
{
std::vector<cmUVProcessChain::Status const*> statuses(
this->Data->Processes.size(), nullptr);
for (std::size_t i = 0; i < statuses.size(); i++) {
statuses[i] = &this->GetStatus(i);
}
return statuses;
}
cmUVProcessChain::Status const& cmUVProcessChain::GetStatus(
std::size_t index) const
{
return this->Data->Processes[index]->ProcessStatus;
}
bool cmUVProcessChain::Finished() const
{
return this->Data->ProcessesCompleted >= this->Data->Processes.size();
}
std::pair<cmUVProcessChain::ExceptionCode, std::string>
cmUVProcessChain::Status::GetException() const
{
if (this->SpawnResult) {
return std::make_pair(ExceptionCode::Spawn,
uv_strerror(this->SpawnResult));
}
#ifdef _WIN32
if (this->Finished && (this->ExitStatus & 0xF0000000) == 0xC0000000) {
// Child terminated due to exceptional behavior.
switch (this->ExitStatus) {
case STATUS_CONTROL_C_EXIT:
return std::make_pair(ExceptionCode::Interrupt, "User interrupt");
case STATUS_FLOAT_DENORMAL_OPERAND:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point exception (denormal operand)");
case STATUS_FLOAT_DIVIDE_BY_ZERO:
return std::make_pair(ExceptionCode::Numerical, "Divide-by-zero");
case STATUS_FLOAT_INEXACT_RESULT:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point exception (inexact result)");
case STATUS_FLOAT_INVALID_OPERATION:
return std::make_pair(ExceptionCode::Numerical,
"Invalid floating-point operation");
case STATUS_FLOAT_OVERFLOW:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point overflow");
case STATUS_FLOAT_STACK_CHECK:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point stack check failed");
case STATUS_FLOAT_UNDERFLOW:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point underflow");
# ifdef STATUS_FLOAT_MULTIPLE_FAULTS
case STATUS_FLOAT_MULTIPLE_FAULTS:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point exception (multiple faults)");
# endif
# ifdef STATUS_FLOAT_MULTIPLE_TRAPS
case STATUS_FLOAT_MULTIPLE_TRAPS:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point exception (multiple traps)");
# endif
case STATUS_INTEGER_DIVIDE_BY_ZERO:
return std::make_pair(ExceptionCode::Numerical,
"Integer divide-by-zero");
case STATUS_INTEGER_OVERFLOW:
return std::make_pair(ExceptionCode::Numerical, "Integer overflow");
case STATUS_DATATYPE_MISALIGNMENT:
return std::make_pair(ExceptionCode::Fault, "Datatype misalignment");
case STATUS_ACCESS_VIOLATION:
return std::make_pair(ExceptionCode::Fault, "Access violation");
case STATUS_IN_PAGE_ERROR:
return std::make_pair(ExceptionCode::Fault, "In-page error");
case STATUS_INVALID_HANDLE:
return std::make_pair(ExceptionCode::Fault, "Invalid handle");
case STATUS_NONCONTINUABLE_EXCEPTION:
return std::make_pair(ExceptionCode::Fault,
"Noncontinuable exception");
case STATUS_INVALID_DISPOSITION:
return std::make_pair(ExceptionCode::Fault, "Invalid disposition");
case STATUS_ARRAY_BOUNDS_EXCEEDED:
return std::make_pair(ExceptionCode::Fault, "Array bounds exceeded");
case STATUS_STACK_OVERFLOW:
return std::make_pair(ExceptionCode::Fault, "Stack overflow");
case STATUS_ILLEGAL_INSTRUCTION:
return std::make_pair(ExceptionCode::Illegal, "Illegal instruction");
case STATUS_PRIVILEGED_INSTRUCTION:
return std::make_pair(ExceptionCode::Illegal,
"Privileged instruction");
case STATUS_NO_MEMORY:
default: {
char buf[256];
snprintf(buf, sizeof(buf), "Exit code 0x%x\n",
static_cast<unsigned int>(this->ExitStatus));
return std::make_pair(ExceptionCode::Other, buf);
}
}
}
#else
if (this->Finished && this->TermSignal) {
switch (this->TermSignal) {
# ifdef SIGSEGV
case SIGSEGV:
return std::make_pair(ExceptionCode::Fault, "Segmentation fault");
# endif
# ifdef SIGBUS
# if !defined(SIGSEGV) || SIGBUS != SIGSEGV
case SIGBUS:
return std::make_pair(ExceptionCode::Fault, "Bus error");
# endif
# endif
# ifdef SIGFPE
case SIGFPE:
return std::make_pair(ExceptionCode::Numerical,
"Floating-point exception");
# endif
# ifdef SIGILL
case SIGILL:
return std::make_pair(ExceptionCode::Illegal, "Illegal instruction");
# endif
# ifdef SIGINT
case SIGINT:
return std::make_pair(ExceptionCode::Interrupt, "User interrupt");
# endif
# ifdef SIGABRT
case SIGABRT:
return std::make_pair(ExceptionCode::Other, "Subprocess aborted");
# endif
# ifdef SIGKILL
case SIGKILL:
return std::make_pair(ExceptionCode::Other, "Subprocess killed");
# endif
# ifdef SIGTERM
case SIGTERM:
return std::make_pair(ExceptionCode::Other, "Subprocess terminated");
# endif
# ifdef SIGHUP
case SIGHUP:
return std::make_pair(ExceptionCode::Other, "SIGHUP");
# endif
# ifdef SIGQUIT
case SIGQUIT:
return std::make_pair(ExceptionCode::Other, "SIGQUIT");
# endif
# ifdef SIGTRAP
case SIGTRAP:
return std::make_pair(ExceptionCode::Other, "SIGTRAP");
# endif
# ifdef SIGIOT
# if !defined(SIGABRT) || SIGIOT != SIGABRT
case SIGIOT:
return std::make_pair(ExceptionCode::Other, "SIGIOT");
# endif
# endif
# ifdef SIGUSR1
case SIGUSR1:
return std::make_pair(ExceptionCode::Other, "SIGUSR1");
# endif
# ifdef SIGUSR2
case SIGUSR2:
return std::make_pair(ExceptionCode::Other, "SIGUSR2");
# endif
# ifdef SIGPIPE
case SIGPIPE:
return std::make_pair(ExceptionCode::Other, "SIGPIPE");
# endif
# ifdef SIGALRM
case SIGALRM:
return std::make_pair(ExceptionCode::Other, "SIGALRM");
# endif
# ifdef SIGSTKFLT
case SIGSTKFLT:
return std::make_pair(ExceptionCode::Other, "SIGSTKFLT");
# endif
# ifdef SIGCHLD
case SIGCHLD:
return std::make_pair(ExceptionCode::Other, "SIGCHLD");
# elif defined(SIGCLD)
case SIGCLD:
return std::make_pair(ExceptionCode::Other, "SIGCLD");
# endif
# ifdef SIGCONT
case SIGCONT:
return std::make_pair(ExceptionCode::Other, "SIGCONT");
# endif
# ifdef SIGSTOP
case SIGSTOP:
return std::make_pair(ExceptionCode::Other, "SIGSTOP");
# endif
# ifdef SIGTSTP
case SIGTSTP:
return std::make_pair(ExceptionCode::Other, "SIGTSTP");
# endif
# ifdef SIGTTIN
case SIGTTIN:
return std::make_pair(ExceptionCode::Other, "SIGTTIN");
# endif
# ifdef SIGTTOU
case SIGTTOU:
return std::make_pair(ExceptionCode::Other, "SIGTTOU");
# endif
# ifdef SIGURG
case SIGURG:
return std::make_pair(ExceptionCode::Other, "SIGURG");
# endif
# ifdef SIGXCPU
case SIGXCPU:
return std::make_pair(ExceptionCode::Other, "SIGXCPU");
# endif
# ifdef SIGXFSZ
case SIGXFSZ:
return std::make_pair(ExceptionCode::Other, "SIGXFSZ");
# endif
# ifdef SIGVTALRM
case SIGVTALRM:
return std::make_pair(ExceptionCode::Other, "SIGVTALRM");
# endif
# ifdef SIGPROF
case SIGPROF:
return std::make_pair(ExceptionCode::Other, "SIGPROF");
# endif
# ifdef SIGWINCH
case SIGWINCH:
return std::make_pair(ExceptionCode::Other, "SIGWINCH");
# endif
# ifdef SIGPOLL
case SIGPOLL:
return std::make_pair(ExceptionCode::Other, "SIGPOLL");
# endif
# ifdef SIGIO
# if !defined(SIGPOLL) || SIGIO != SIGPOLL
case SIGIO:
return std::make_pair(ExceptionCode::Other, "SIGIO");
# endif
# endif
# ifdef SIGPWR
case SIGPWR:
return std::make_pair(ExceptionCode::Other, "SIGPWR");
# endif
# ifdef SIGSYS
case SIGSYS:
return std::make_pair(ExceptionCode::Other, "SIGSYS");
# endif
# ifdef SIGUNUSED
# if !defined(SIGSYS) || SIGUNUSED != SIGSYS
case SIGUNUSED:
return std::make_pair(ExceptionCode::Other, "SIGUNUSED");
# endif
# endif
default: {
char buf[256];
snprintf(buf, sizeof(buf), "Signal %d", this->TermSignal);
return std::make_pair(ExceptionCode::Other, buf);
}
}
}
#endif
return std::make_pair(ExceptionCode::None, "");
}
void cmUVProcessChain::InternalData::ProcessData::Finish()
{
this->ProcessStatus.Finished = true;
this->Data->ProcessesCompleted++;
}
|