소스 검색

No quick_exit

default_compile_flags
vector-of-bool 4 년 전
부모
커밋
e108f7b92c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/dds/proc.nix.cpp

+ 2
- 2
src/dds/proc.nix.cpp 파일 보기

@@ -53,13 +53,13 @@ spawn_child(const std::vector<std::string>& command, int stdout_pipe, int close_
std::cerr
<< fmt::format("[dds child executor] The requested executable ({}) could not be found.",
strings[0]);
std::quick_exit(-1);
std::exit(-1);
}

std::cerr << "[dds child executor] execvp returned! This is a fatal error: "
<< std::system_category().message(errno) << '\n';

std::quick_exit(-1);
std::exit(-1);
}

} // namespace

Loading…
취소
저장