diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-08-16 17:33:57 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-08-16 17:33:57 +0000 |
commit | 0009850524f72183c49b506f3eb4c3bdc5f3a0d4 (patch) | |
tree | 6937e5610dcb4b6523e626e69381aa0bacf73d53 /include | |
parent | 6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87 (diff) | |
download | external_llvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.zip external_llvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.tar.gz external_llvm-0009850524f72183c49b506f3eb4c3bdc5f3a0d4.tar.bz2 |
Removing unused functionality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Process.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Support/Process.h b/include/llvm/Support/Process.h index 0baf7b9..a23c4ad 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. |