blob: 897d9c39774152ee5bf6ff2741c05c29fb123dae (
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);
}
}
#endif
|