Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../usr/include/asm-gene...
File: msgbuf.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef __ASM_GENERIC_MSGBUF_H
[1] Fix | Delete
#define __ASM_GENERIC_MSGBUF_H
[2] Fix | Delete
[3] Fix | Delete
#include <asm/bitsperlong.h>
[4] Fix | Delete
/*
[5] Fix | Delete
* generic msqid64_ds structure.
[6] Fix | Delete
*
[7] Fix | Delete
* Note extra padding because this structure is passed back and forth
[8] Fix | Delete
* between kernel and user space.
[9] Fix | Delete
*
[10] Fix | Delete
* msqid64_ds was originally meant to be architecture specific, but
[11] Fix | Delete
* everyone just ended up making identical copies without specific
[12] Fix | Delete
* optimizations, so we may just as well all use the same one.
[13] Fix | Delete
*
[14] Fix | Delete
* 64 bit architectures typically define a 64 bit __kernel_time_t,
[15] Fix | Delete
* so they do not need the first three padding words.
[16] Fix | Delete
* On big-endian systems, the padding is in the wrong place.
[17] Fix | Delete
*
[18] Fix | Delete
* Pad space is left for:
[19] Fix | Delete
* - 2 miscellaneous 32-bit values
[20] Fix | Delete
*/
[21] Fix | Delete
[22] Fix | Delete
struct msqid64_ds {
[23] Fix | Delete
struct ipc64_perm msg_perm;
[24] Fix | Delete
#if __BITS_PER_LONG == 64
[25] Fix | Delete
__kernel_time_t msg_stime; /* last msgsnd time */
[26] Fix | Delete
__kernel_time_t msg_rtime; /* last msgrcv time */
[27] Fix | Delete
__kernel_time_t msg_ctime; /* last change time */
[28] Fix | Delete
#else
[29] Fix | Delete
unsigned long msg_stime; /* last msgsnd time */
[30] Fix | Delete
unsigned long msg_stime_high;
[31] Fix | Delete
unsigned long msg_rtime; /* last msgrcv time */
[32] Fix | Delete
unsigned long msg_rtime_high;
[33] Fix | Delete
unsigned long msg_ctime; /* last change time */
[34] Fix | Delete
unsigned long msg_ctime_high;
[35] Fix | Delete
#endif
[36] Fix | Delete
unsigned long msg_cbytes; /* current number of bytes on queue */
[37] Fix | Delete
unsigned long msg_qnum; /* number of messages in queue */
[38] Fix | Delete
unsigned long msg_qbytes; /* max number of bytes on queue */
[39] Fix | Delete
__kernel_pid_t msg_lspid; /* pid of last msgsnd */
[40] Fix | Delete
__kernel_pid_t msg_lrpid; /* last receive pid */
[41] Fix | Delete
unsigned long __unused4;
[42] Fix | Delete
unsigned long __unused5;
[43] Fix | Delete
};
[44] Fix | Delete
[45] Fix | Delete
#endif /* __ASM_GENERIC_MSGBUF_H */
[46] Fix | Delete
[47] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function