- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathgetrusage.c
73 lines (59 loc) · 2.36 KB
/
getrusage.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Kalle Sommer Nielsen <kalle@php.net> |
+----------------------------------------------------------------------+
*/
#include<php.h>
#include<psapi.h>
#include"getrusage.h"
/*
* Parts of this file is based on code from the OpenVSwitch project, that
* is released under the Apache 2.0 license and is copyright 2014 Nicira, Inc.
* and have been modified to work with PHP.
*/
staticzend_always_inlinevoidusage_to_timeval(FILETIME*ft, structtimeval*tv)
{
ULARGE_INTEGERtime;
time.LowPart=ft->dwLowDateTime;
time.HighPart=ft->dwHighDateTime;
tv->tv_sec= (zend_long) (time.QuadPart / 10000000);
tv->tv_usec= (zend_long) ((time.QuadPart % 10000000) / 10);
}
PHPAPIintgetrusage(intwho, structrusage*usage)
{
FILETIMEctime, etime, stime, utime;
memset(usage, 0, sizeof(structrusage));
if (who==RUSAGE_SELF) {
PROCESS_MEMORY_COUNTERSpmc;
HANDLEproc=GetCurrentProcess();
if (!GetProcessTimes(proc, &ctime, &etime, &stime, &utime)) {
return-1;
} elseif(!GetProcessMemoryInfo(proc, &pmc, sizeof(pmc))) {
return-1;
}
usage_to_timeval(&stime, &usage->ru_stime);
usage_to_timeval(&utime, &usage->ru_utime);
usage->ru_majflt=pmc.PageFaultCount;
usage->ru_maxrss=pmc.PeakWorkingSetSize / 1024;
return0;
} elseif (who==RUSAGE_THREAD) {
if (!GetThreadTimes(GetCurrentThread(), &ctime, &etime, &stime, &utime)) {
return-1;
}
usage_to_timeval(&stime, &usage->ru_stime);
usage_to_timeval(&utime, &usage->ru_utime);
return0;
} else {
return-1;
}
}