summaryrefslogtreecommitdiff
path: root/lib/Support/Unix
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2013-08-16 17:33:57 +0000
committerAaron Ballman <aaron@aaronballman.com>2013-08-16 17:33:57 +0000
commit0009850524f72183c49b506f3eb4c3bdc5f3a0d4 (patch)
tree6937e5610dcb4b6523e626e69381aa0bacf73d53 /lib/Support/Unix
parent6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87 (diff)
downloadllvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.tar.gz
llvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.tar.bz2
llvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.tar.xz
Removing unused functionality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Unix')
-rw-r--r--lib/Support/Unix/Process.inc8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Support/Unix/Process.inc b/lib/Support/Unix/Process.inc
index 3731618db5..538f05f980 100644
--- a/lib/Support/Unix/Process.inc
+++ b/lib/Support/Unix/Process.inc
@@ -140,14 +140,6 @@ void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
llvm::tie(user_time, sys_time) = getRUsageTimes();
}
-int Process::GetCurrentUserId() {
- return getuid();
-}
-
-int Process::GetCurrentGroupId() {
- return getgid();
-}
-
#if defined(HAVE_MACH_MACH_H) && !defined(__GNU__)
#include <mach/mach.h>
#endif