mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fixes https://github.com/flutter/flutter/issues/82226 On linux/lldb there are sometimes spurious EINTR errors when starting an isolate (without an apparent reason). This results in threads being prematurely terminated.
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_FML_EINTR_WRAPPER_H_
|
|
#define FLUTTER_FML_EINTR_WRAPPER_H_
|
|
|
|
#include <errno.h>
|
|
|
|
#include "flutter/fml/build_config.h"
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Windows has no concept of EINTR.
|
|
#define FML_HANDLE_EINTR(x) (x)
|
|
#define FML_IGNORE_EINTR(x) (x)
|
|
|
|
#else
|
|
|
|
#define FML_HANDLE_EINTR(x) \
|
|
({ \
|
|
decltype(x) eintr_wrapper_result; \
|
|
do { \
|
|
eintr_wrapper_result = (x); \
|
|
} while (eintr_wrapper_result == -1 && errno == EINTR); \
|
|
eintr_wrapper_result; \
|
|
})
|
|
|
|
#define FML_IGNORE_EINTR(x) \
|
|
({ \
|
|
decltype(x) eintr_wrapper_result; \
|
|
do { \
|
|
eintr_wrapper_result = (x); \
|
|
if (eintr_wrapper_result == -1 && errno == EINTR) { \
|
|
eintr_wrapper_result = 0; \
|
|
} \
|
|
} while (0); \
|
|
eintr_wrapper_result; \
|
|
})
|
|
|
|
#endif // defined(OS_WIN)
|
|
|
|
#endif // FLUTTER_FML_EINTR_WRAPPER_H_
|