函数源码 |
Source File:ipc\mq_sysctl.c |
Create Date:2022-07-27 18:28:35 |
首页 | Copyright©Brick |
20 21 22 23 24 25 26 27 28 | static int proc_mq_dointvec( struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos) { struct ctl_table mq_table; memcpy (&mq_table, table, sizeof (mq_table)); mq_table.data = get_mq(table); return proc_dointvec(&mq_table, write, buffer, lenp, ppos); } |