Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Rob Jones
Gaudi
Commits
9929a45a
Commit
9929a45a
authored
2 years ago
by
Christopher Rob Jones
Browse files
Options
Downloads
Patches
Plain Diff
ProcStats: default init members of linux_proc struct
parent
a018d4bb
No related branches found
No related tags found
No related merge requests found
Pipeline
#5008584
failed
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GaudiAud/src/ProcStats.cpp
+36
-36
36 additions, 36 deletions
GaudiAud/src/ProcStats.cpp
with
36 additions
and
36 deletions
GaudiAud/src/ProcStats.cpp
+
36
−
36
View file @
9929a45a
...
...
@@ -198,41 +198,41 @@
(divide by sysconf(_SC_CLK_TCK).
*/
struct
linux_proc
{
int
pid
;
int
pid
{
-
1
}
;
char
comm
[
400
];
char
state
;
int
ppid
;
int
pgrp
;
int
session
;
int
tty
;
int
tpgid
;
unsigned
long
flags
;
unsigned
long
minflt
;
unsigned
long
cminflt
;
unsigned
long
majflt
;
unsigned
long
cmajflt
;
unsigned
long
utime
;
unsigned
long
stime
;
long
cutime
;
long
cstime
;
long
priority
;
long
nice
;
long
num_threads
;
long
itrealvalue
;
unsigned
long
long
starttime
;
unsigned
long
vsize
;
long
rss
;
unsigned
long
rlim
;
unsigned
long
startcode
;
unsigned
long
endcode
;
unsigned
long
startstack
;
unsigned
long
kstkesp
;
unsigned
long
kstkeip
;
unsigned
long
signal
;
unsigned
long
blocked
;
unsigned
long
sigignore
;
unsigned
long
sigcatch
;
unsigned
long
wchan
;
int
ppid
{
-
1
}
;
int
pgrp
{
-
1
}
;
int
session
{
-
1
}
;
int
tty
{
-
1
}
;
int
tpgid
{
-
1
}
;
unsigned
long
flags
{
0
}
;
unsigned
long
minflt
{
0
}
;
unsigned
long
cminflt
{
0
}
;
unsigned
long
majflt
{
0
}
;
unsigned
long
cmajflt
{
0
}
;
unsigned
long
utime
{
0
}
;
unsigned
long
stime
{
0
}
;
long
cutime
{
0
}
;
long
cstime
{
0
}
;
long
priority
{
0
}
;
long
nice
{
0
}
;
long
num_threads
{
0
}
;
long
itrealvalue
{
0
}
;
unsigned
long
long
starttime
{
0
}
;
unsigned
long
vsize
{
0
}
;
long
rss
{
0
}
;
unsigned
long
rlim
{
0
}
;
unsigned
long
startcode
{
0
}
;
unsigned
long
endcode
{
0
}
;
unsigned
long
startstack
{
0
}
;
unsigned
long
kstkesp
{
0
}
;
unsigned
long
kstkeip
{
0
}
;
unsigned
long
signal
{
0
}
;
unsigned
long
blocked
{
0
}
;
unsigned
long
sigignore
{
0
}
;
unsigned
long
sigcatch
{
0
}
;
unsigned
long
wchan
{
0
}
;
};
#endif // __linux__ or __APPLE__
...
...
@@ -259,13 +259,13 @@ void ProcStats::open_ufd() {
bool
ProcStats
::
fetch
(
procInfo
&
f
)
{
if
(
!
m_valid
)
{
return
false
;
}
std
::
scoped_lock
lock
{
m_mutex
};
std
::
scoped_lock
lock
{
m_mutex
};
#if defined( __linux__ ) or defined( __APPLE__ )
double
pr_size
{
0
},
pr_rssize
{
0
};
double
pr_size
{
0
},
pr_rssize
{
0
};
linux_proc
pinfo
;
int
cnt
{
0
};
int
cnt
{
0
};
char
buf
[
500
];
m_ufd
.
lseek
(
0
,
SEEK_SET
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment