summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Process.h
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 /include/llvm/Support/Process.h
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 'include/llvm/Support/Process.h')
-rw-r--r--include/llvm/Support/Process.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Support/Process.h b/include/llvm/Support/Process.h
index 0baf7b911c..a23c4add42 100644
--- a/include/llvm/Support/Process.h
+++ b/include/llvm/Support/Process.h
@@ -155,16 +155,6 @@ public:
static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
TimeValue &sys_time);
- /// This static function will return the process' current user id number.
- /// Not all operating systems support this feature. Where it is not
- /// supported, the function should return 65536 as the value.
- static int GetCurrentUserId();
-
- /// This static function will return the process' current group id number.
- /// Not all operating systems support this feature. Where it is not
- /// supported, the function should return 65536 as the value.
- static int GetCurrentGroupId();
-
/// This function makes the necessary calls to the operating system to
/// prevent core files or any other kind of large memory dumps that can
/// occur when a program fails.