Server IP : 85.214.239.14 / Your IP : 3.148.106.201 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/usr/include/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */ /* * IOCTLs for Remoteproc's character device interface. * * Copyright (c) 2020, The Linux Foundation. All rights reserved. */ #ifndef _REMOTEPROC_CDEV_H_ #define _REMOTEPROC_CDEV_H_ #include <linux/ioctl.h> #include <linux/types.h> #define RPROC_MAGIC 0xB7 /* * The RPROC_SET_SHUTDOWN_ON_RELEASE ioctl allows to enable/disable the shutdown of a remote * processor automatically when the controlling userpsace closes the char device interface. * * input parameter: integer * 0 : disable automatic shutdown * other : enable automatic shutdown */ #define RPROC_SET_SHUTDOWN_ON_RELEASE _IOW(RPROC_MAGIC, 1, __s32) /* * The RPROC_GET_SHUTDOWN_ON_RELEASE ioctl gets information about whether the automatic shutdown of * a remote processor is enabled or disabled when the controlling userspace closes the char device * interface. * * output parameter: integer * 0 : automatic shutdown disable * other : automatic shutdown enable */ #define RPROC_GET_SHUTDOWN_ON_RELEASE _IOR(RPROC_MAGIC, 2, __s32) #endif