become_user_dummy.cpp 399 B

1234567891011121314151617181920212223242526
  1. #include "become_user.h"
  2. #ifndef _linux_
  3. namespace NYql {
  4. void BecomeUser(const TString& username, const TString& groupname) {
  5. Y_UNUSED(username);
  6. Y_UNUSED(groupname);
  7. }
  8. void TurnOnBecomeUserAmbientCaps() {
  9. }
  10. void TurnOffBecomeUserAbility() {
  11. }
  12. void DumpCaps(const TString& title) {
  13. Y_UNUSED(title);
  14. }
  15. void SendSignalOnParentThreadExit(int signo)
  16. {
  17. Y_UNUSED(signo);
  18. }
  19. }
  20. #endif