aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/utils/signals/utils.h
blob: 75c55244fac93251ad80413e18892e323428b2cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <util/generic/fwd.h>

namespace google {
namespace protobuf {
    class Message;
} // namespace protobuf
} // namespace google

namespace NYql {

void ProcTitleInit(int argc, const char* argv[]);
void SetProcTitle(const char* title);
void AddProcTitleSuffix(const char* suffix);
const char* GetProcTitle();

TString PbMessageToStr(const google::protobuf::Message& msg);
TString Proto2Yson(const google::protobuf::Message& proto);

} // namespace NYql