blob: ef8ca8ccafa68b597459feb69a42a4acd663b136 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "become_user.h"
#ifndef _linux_
namespace NYql {
void BecomeUser(const TString& username, const TString& groupname) {
Y_UNUSED(username);
Y_UNUSED(groupname);
}
void TurnOnBecomeUserAmbientCaps() {
}
void TurnOffBecomeUserAbility() {
}
void DumpCaps(const TString& title) {
Y_UNUSED(title);
}
void SendSignalOnParentThreadExit(int signo)
{
Y_UNUSED(signo);
}
} // namespace NYql
#endif
|