aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2008-08-09 17:55:00 +0000
committerEli Zaretskii2008-08-09 17:55:00 +0000
commit8f8b082a13e2271496d12853d595f4d59046170c (patch)
treea940076f0f7df2fbf0f66c2216c7a7d052a7c71a /src
parent5bef3aecc16e6d2a1266d67bc7094467bca31fdb (diff)
downloademacs-8f8b082a13e2271496d12853d595f4d59046170c.tar.gz
emacs-8f8b082a13e2271496d12853d595f4d59046170c.zip
(Fsystem_process_attributes): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog35
-rw-r--r--src/process.c4
2 files changed, 39 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index af871f2ce62..7fdffb7df38 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,38 @@
12008-08-09 Eli Zaretskii <eliz@gnu.org>
2
3 * w32.c: Include thelp32.h, psapi.h and coding.h.
4 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
5 declarations.
6 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
7 (Process32Next_Proc): New typedefs.
8 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
9 (g_b_init_process32_next, g_b_init_open_thread_token)
10 (g_b_init_impersonate_self, g_b_init_revert_to_self)
11 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
12 (g_b_init_get_process_working_set_size)
13 (g_b_init_global_memory_status_ex): New static variables.
14 (globals_of_w32): Initialize them.
15 (create_toolhelp32_snapshot, process32_first, process32_next)
16 (open_thread_token, impersonate_self, revert_to_self)
17 (get_process_memory_info, get_process_working_set_size)
18 (global_memory_status, global_memory_status_ex): New wrapper
19 functions.
20 (w32_list_system_processes, w32_system_process_attributes)
21 (enable_privilege, restore_privilege, ltime, process_times): New
22 functions.
23 (convert_time_raw): New function.
24 (convert_time): Remove conversion of FILETIME into time in 100
25 nsec units, call convert_time_raw instead.
26
27 * process.h (w32_list_system_processes, w32_system_process_attributes):
28 Add prototypes.
29 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
30 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
31 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
32 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
33
34 * process.c (Fsystem_process_attributes): Doc fix.
35
12008-08-08 Chong Yidong <cyd@stupidchicken.com> 362008-08-08 Chong Yidong <cyd@stupidchicken.com>
2 37
3 * xdisp.c (move_it_to): When stopping at a charpos, check if 38 * xdisp.c (move_it_to): When stopping at a charpos, check if
diff --git a/src/process.c b/src/process.c
index b82fb9fc615..6bbdc53ddb1 100644
--- a/src/process.c
+++ b/src/process.c
@@ -7481,6 +7481,8 @@ See `list-system-processes' for getting a list of all process IDs.
7481 7481
7482The attributes that this function may return are listed below, 7482The attributes that this function may return are listed below,
7483together with the type of the associated value (in parentheses). 7483together with the type of the associated value (in parentheses).
7484Not all platforms support all of these attributes; unsupported
7485attributes will not appear in the returned alist.
7484Unless explicitly indicated otherwise, numbers can have either 7486Unless explicitly indicated otherwise, numbers can have either
7485integer or floating point values. 7487integer or floating point values.
7486 7488
@@ -8207,6 +8209,8 @@ See `list-system-processes' for getting a list of all process IDs.
8207 8209
8208The attributes that this function may return are listed below, 8210The attributes that this function may return are listed below,
8209together with the type of the associated value (in parentheses). 8211together with the type of the associated value (in parentheses).
8212Not all platforms support all of these attributes; unsupported
8213attributes will not appear in the returned alist.
8210Unless explicitly indicated otherwise, numbers can have either 8214Unless explicitly indicated otherwise, numbers can have either
8211integer or floating point values. 8215integer or floating point values.
8212 8216