This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
Allow for effective UID of binaries (
#286
)
tags/v1.9.13
Nova
Filipe Coelho
<falktx@falktx.com>
5 years ago
parent
28c930bcae
commit
294115922e
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
android/Shm.cpp
+1
-1
common/JackTools.cpp
+1
-1
common/shm.c
+ 1
- 1
android/Shm.cpp
View File
@@ -283,7 +283,7 @@ namespace android {
}
int Shm::GetUID() {
return getuid();
return get
e
uid();
}
int Shm::GetPID() {
+ 1
- 1
common/JackTools.cpp
View File
@@ -76,7 +76,7 @@ namespace Jack {
return _getpid();
//#error "No getuid function available"
#else
return getuid();
return get
e
uid();
#endif
}
+ 1
- 1
common/shm.c
View File
@@ -65,7 +65,7 @@ static int GetUID()
return _getpid();
//#error "No getuid function available"
#else
return getuid();
return get
e
uid();
#endif
}
Write
Preview
Loading…
Cancel
Save