Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
927400be
Commit
927400be
authored
Jun 22, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_Process.WorkingSetSize.
parent
bd647dc0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
18 deletions
+23
-18
builtin.c
dlls/wbemprox/builtin.c
+23
-18
No files found.
dlls/wbemprox/builtin.c
View file @
927400be
...
...
@@ -351,6 +351,8 @@ static const WCHAR prop_volumenameW[] =
{
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
'N'
,
'a'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
prop_volumeserialnumberW
[]
=
{
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
'S'
,
'e'
,
'r'
,
'i'
,
'a'
,
'l'
,
'N'
,
'u'
,
'm'
,
'b'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
prop_workingsetsizeW
[]
=
{
'W'
,
'o'
,
'r'
,
'k'
,
'i'
,
'n'
,
'g'
,
'S'
,
'e'
,
't'
,
'S'
,
'i'
,
'z'
,
'e'
,
0
};
/* column definitions must be kept in sync with record structures below */
static
const
struct
column
col_baseboard
[]
=
...
...
@@ -521,16 +523,17 @@ static const struct column col_printer[] =
};
static
const
struct
column
col_process
[]
=
{
{
prop_captionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_commandlineW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_handleW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_pprocessidW
,
CIM_UINT32
,
VT_I4
},
{
prop_processidW
,
CIM_UINT32
,
VT_I4
},
{
prop_threadcountW
,
CIM_UINT32
,
VT_I4
},
{
prop_captionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_commandlineW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_handleW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_pprocessidW
,
CIM_UINT32
,
VT_I4
},
{
prop_processidW
,
CIM_UINT32
,
VT_I4
},
{
prop_threadcountW
,
CIM_UINT32
,
VT_I4
},
{
prop_workingsetsizeW
,
CIM_UINT64
},
/* methods */
{
method_getownerW
,
CIM_FLAG_ARRAY
|
COL_FLAG_METHOD
}
{
method_getownerW
,
CIM_FLAG_ARRAY
|
COL_FLAG_METHOD
}
};
static
const
struct
column
col_processor
[]
=
{
...
...
@@ -911,6 +914,7 @@ struct record_process
UINT32
pprocess_id
;
UINT32
process_id
;
UINT32
thread_count
;
UINT64
workingsetsize
;
/* methods */
class_method
*
get_owner
;
};
...
...
@@ -2204,16 +2208,17 @@ static enum fill_status fill_process( struct table *table, const struct expr *co
if
(
!
resize_table
(
table
,
row
+
1
,
sizeof
(
*
rec
)
))
goto
done
;
rec
=
(
struct
record_process
*
)(
table
->
data
+
offset
);
rec
->
caption
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
commandline
=
get_cmdline
(
entry
.
th32ProcessID
);
rec
->
description
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
caption
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
commandline
=
get_cmdline
(
entry
.
th32ProcessID
);
rec
->
description
=
heap_strdupW
(
entry
.
szExeFile
);
sprintfW
(
handle
,
fmtW
,
entry
.
th32ProcessID
);
rec
->
handle
=
heap_strdupW
(
handle
);
rec
->
name
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
process_id
=
entry
.
th32ProcessID
;
rec
->
pprocess_id
=
entry
.
th32ParentProcessID
;
rec
->
thread_count
=
entry
.
cntThreads
;
rec
->
get_owner
=
process_get_owner
;
rec
->
handle
=
heap_strdupW
(
handle
);
rec
->
name
=
heap_strdupW
(
entry
.
szExeFile
);
rec
->
process_id
=
entry
.
th32ProcessID
;
rec
->
pprocess_id
=
entry
.
th32ParentProcessID
;
rec
->
thread_count
=
entry
.
cntThreads
;
rec
->
workingsetsize
=
0
;
rec
->
get_owner
=
process_get_owner
;
if
(
!
match_row
(
table
,
row
,
cond
,
&
status
))
{
free_row_values
(
table
,
row
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment