mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 21:54:40 +03:00
LibCore+top: Use pid_t for pgid/pgrp/sid numbers
This commit is contained in:
parent
5a934c37cf
commit
6d8c4af9c2
Notes:
sideshowbarker
2024-07-19 02:52:48 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/6d8c4af9c2c
@ -57,9 +57,9 @@ struct ProcessStatistics {
|
||||
// Keep this in sync with /proc/all.
|
||||
// From the kernel side:
|
||||
pid_t pid;
|
||||
unsigned pgid;
|
||||
unsigned pgp;
|
||||
unsigned sid;
|
||||
pid_t pgid;
|
||||
pid_t pgp;
|
||||
pid_t sid;
|
||||
uid_t uid;
|
||||
gid_t gid;
|
||||
pid_t ppid;
|
||||
|
@ -42,9 +42,9 @@
|
||||
struct ThreadData {
|
||||
int tid;
|
||||
pid_t pid;
|
||||
unsigned pgid;
|
||||
unsigned pgp;
|
||||
unsigned sid;
|
||||
pid_t pgid;
|
||||
pid_t pgp;
|
||||
pid_t sid;
|
||||
uid_t uid;
|
||||
gid_t gid;
|
||||
pid_t ppid;
|
||||
|
Loading…
Reference in New Issue
Block a user