diff options
| author | Eli Zaretskii | 2008-08-09 17:55:00 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-08-09 17:55:00 +0000 |
| commit | 8f8b082a13e2271496d12853d595f4d59046170c (patch) | |
| tree | a940076f0f7df2fbf0f66c2216c7a7d052a7c71a /src | |
| parent | 5bef3aecc16e6d2a1266d67bc7094467bca31fdb (diff) | |
| download | emacs-8f8b082a13e2271496d12853d595f4d59046170c.tar.gz emacs-8f8b082a13e2271496d12853d595f4d59046170c.zip | |
(Fsystem_process_attributes): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 35 | ||||
| -rw-r--r-- | src/process.c | 4 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-08-08 Chong Yidong <cyd@stupidchicken.com> | 36 | 2008-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 | ||
| 7482 | The attributes that this function may return are listed below, | 7482 | The attributes that this function may return are listed below, |
| 7483 | together with the type of the associated value (in parentheses). | 7483 | together with the type of the associated value (in parentheses). |
| 7484 | Not all platforms support all of these attributes; unsupported | ||
| 7485 | attributes will not appear in the returned alist. | ||
| 7484 | Unless explicitly indicated otherwise, numbers can have either | 7486 | Unless explicitly indicated otherwise, numbers can have either |
| 7485 | integer or floating point values. | 7487 | integer or floating point values. |
| 7486 | 7488 | ||
| @@ -8207,6 +8209,8 @@ See `list-system-processes' for getting a list of all process IDs. | |||
| 8207 | 8209 | ||
| 8208 | The attributes that this function may return are listed below, | 8210 | The attributes that this function may return are listed below, |
| 8209 | together with the type of the associated value (in parentheses). | 8211 | together with the type of the associated value (in parentheses). |
| 8212 | Not all platforms support all of these attributes; unsupported | ||
| 8213 | attributes will not appear in the returned alist. | ||
| 8210 | Unless explicitly indicated otherwise, numbers can have either | 8214 | Unless explicitly indicated otherwise, numbers can have either |
| 8211 | integer or floating point values. | 8215 | integer or floating point values. |
| 8212 | 8216 | ||