blob: b8c284187c8799c43cb50a9f307cd716a79f42bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab ft=cpp
#pragma once
#include "common/async/yield_context.h"
class DoutPrefixProvider;
// this struct holds information which is created at the frontend
// and should trickle down through all function calls to the backend
struct req_context {
const DoutPrefixProvider* dpp{nullptr};
optional_yield y;
const jspan* span;
};
|