1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0032234: Configuration, OSD_Process::UserName() - avoid using getpwuid() unimplemented by Emscripten SDK

This commit is contained in:
kgv 2021-03-21 23:26:56 +03:00 committed by bugmaster
parent 285b5189cd
commit 6c2cf030e2

View File

@ -99,8 +99,13 @@ Standard_Integer OSD_Process::ProcessId(){
TCollection_AsciiString OSD_Process::UserName()
{
#if defined(__EMSCRIPTEN__)
// Emscripten SDK raises TODO exception in runtime while calling getpwuid()
return TCollection_AsciiString();
#else
struct passwd *anInfos = getpwuid (getuid());
return TCollection_AsciiString (anInfos ? anInfos->pw_name : "");
#endif
}
Standard_Boolean OSD_Process::IsSuperUser (){