cregit-Linux how code gets into the kernel

Release 4.7 include/linux/cn_proc.h

Directory: include/linux
/*
 * 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) {}

Contributors

PersonTokensPropCommitsCommitProp
matt helsleymatt helsley11100.00%1100.00%
Total11100.00%1100.00%


static inline void proc_exec_connector(struct task_struct *task) {}

Contributors

PersonTokensPropCommitsCommitProp
matt helsleymatt helsley11100.00%1100.00%
Total11100.00%1100.00%


static inline void proc_id_connector(struct task_struct *task, int which_id) {}

Contributors

PersonTokensPropCommitsCommitProp
matt helsleymatt helsley14100.00%1100.00%
Total14100.00%1100.00%


static inline void proc_sid_connector(struct task_struct *task) {}

Contributors

PersonTokensPropCommitsCommitProp
scott james remnantscott james remnant11100.00%1100.00%
Total11100.00%1100.00%


static inline void proc_comm_connector(struct task_struct *task) {}

Contributors

PersonTokensPropCommitsCommitProp
vladimir zapolskiyvladimir zapolskiy11100.00%1100.00%
Total11100.00%1100.00%


static inline void proc_ptrace_connector(struct task_struct *task, int ptrace_id) {}

Contributors

PersonTokensPropCommitsCommitProp
vladimir zapolskiyvladimir zapolskiy14100.00%1100.00%
Total14100.00%1100.00%


static inline void proc_coredump_connector(struct task_struct *task) {}

Contributors

PersonTokensPropCommitsCommitProp
jesper derehagjesper derehag11100.00%1100.00%
Total11100.00%1100.00%


static inline void proc_exit_connector(struct task_struct *task) {}

Contributors

PersonTokensPropCommitsCommitProp
matt helsleymatt helsley11100.00%1100.00%
Total11100.00%1100.00%

#endif /* CONFIG_PROC_EVENTS */ #endif /* CN_PROC_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
matt helsleymatt helsley10654.92%228.57%
vladimir zapolskiyvladimir zapolskiy4623.83%228.57%
jesper derehagjesper derehag2010.36%114.29%
scott james remnantscott james remnant2010.36%114.29%
david howellsdavid howells10.52%114.29%
Total193100.00%7100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}