dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
59 lines
1.8 KiB
C
59 lines
1.8 KiB
C
/*
|
|
* cn_proc.h - process events connector
|
|
*
|
|
* Copyright (C) Matt Helsley, IBM Corp. 2005
|
|
* Based on cn_fork.h by Nguyen Anh Quynh and Guillaume Thouvenin
|
|
* Copyright (C) 2005 Nguyen Anh Quynh <aquynh@gmail.com>
|
|
* Copyright (C) 2005 Guillaume Thouvenin <guillaume.thouvenin@bull.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2.1 of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it would be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
#ifndef CN_PROC_H
|
|
#define CN_PROC_H
|
|
|
|
#include <uapi/linux/cn_proc.h>
|
|
|
|
#ifdef CONFIG_PROC_EVENTS
|
|
void proc_fork_connector(struct task_struct *task);
|
|
void proc_exec_connector(struct task_struct *task);
|
|
void proc_id_connector(struct task_struct *task, int which_id);
|
|
void proc_sid_connector(struct task_struct *task);
|
|
void proc_ptrace_connector(struct task_struct *task, int which_id);
|
|
void proc_comm_connector(struct task_struct *task);
|
|
void proc_coredump_connector(struct task_struct *task);
|
|
void proc_exit_connector(struct task_struct *task);
|
|
#else
|
|
static inline void proc_fork_connector(struct task_struct *task)
|
|
{}
|
|
|
|
static inline void proc_exec_connector(struct task_struct *task)
|
|
{}
|
|
|
|
static inline void proc_id_connector(struct task_struct *task,
|
|
int which_id)
|
|
{}
|
|
|
|
static inline void proc_sid_connector(struct task_struct *task)
|
|
{}
|
|
|
|
static inline void proc_comm_connector(struct task_struct *task)
|
|
{}
|
|
|
|
static inline void proc_ptrace_connector(struct task_struct *task,
|
|
int ptrace_id)
|
|
{}
|
|
|
|
static inline void proc_coredump_connector(struct task_struct *task)
|
|
{}
|
|
|
|
static inline void proc_exit_connector(struct task_struct *task)
|
|
{}
|
|
#endif /* CONFIG_PROC_EVENTS */
|
|
#endif /* CN_PROC_H */
|