19 lines
340 B
C
19 lines
340 B
C
/*
|
|
ICFS: Interactively Controlled File System
|
|
Copyright (C) 2024-2025 Fedir Kovalov
|
|
|
|
This program can be distributed under the terms of the GNU GPLv2.
|
|
See the file LICENSE.
|
|
*/
|
|
|
|
#ifndef PROCESS_INFO_H
|
|
#define PROCESS_INFO_H
|
|
|
|
#include <sys/types.h>
|
|
struct process_info {
|
|
pid_t PID;
|
|
const char *name;
|
|
};
|
|
|
|
#endif // PROCESS_INFO_H
|