Пример #1
0
int main() {
  common_initialize();

  pid_t child_pid = fork();
  if (child_pid == 0) {
    // In child
    return child_main();
  }

  // In parent
  int ret = parent_main();

  int status,
      wait_ret = waitpid(child_pid, &status, 0);
  if (wait_ret != child_pid || !WIFEXITED(status)) {
    return 1 | ret;
  }
  return ret;
}
Пример #2
0
CheckBoxLabel::CheckBoxLabel(Window &win, std::wstring &&text, bool initial_status)
	: checkbox(win, initial_status)
	, label(win, std::move(text)) {
	common_initialize();
}