#include <grpc/support/port_platform.h>
#include "src/core/lib/iomgr/exec_ctx.h"
#include "absl/strings/str_format.h"
#include <grpc/support/log.h>
#include <grpc/support/sync.h>
#include "src/core/lib/gprpp/crash.h"
#include "src/core/lib/iomgr/combiner.h"
#include "src/core/lib/iomgr/error.h"
static void exec_ctx_run(grpc_closure* closure) { … }
static void exec_ctx_sched(grpc_closure* closure) { … }
namespace grpc_core {
thread_local ExecCtx* ExecCtx::exec_ctx_;
thread_local ApplicationCallbackExecCtx*
ApplicationCallbackExecCtx::callback_exec_ctx_;
bool ExecCtx::Flush() { … }
void ExecCtx::Run(const DebugLocation& location, grpc_closure* closure,
grpc_error_handle error) { … }
void ExecCtx::RunList(const DebugLocation& location, grpc_closure_list* list) { … }
}