Message type for VFS_PIPE2
Change-Id: I01c599cf035d8f103220baae54fefbc80d12fbd2
This commit is contained in:
@@ -232,11 +232,6 @@
|
||||
|
||||
#define NR_VFS_CALLS 49 /* highest number from base plus one */
|
||||
|
||||
/* Field names for the pipe2(2) call. */
|
||||
#define VFS_PIPE2_FD0 m1_i1 /* int */
|
||||
#define VFS_PIPE2_FD1 m1_i2 /* int */
|
||||
#define VFS_PIPE2_FLAGS m1_i3 /* int */
|
||||
|
||||
/* Field names for the umask(2) call. */
|
||||
#define VFS_UMASK_MASK m1_i1 /* mode_t */
|
||||
|
||||
|
||||
@@ -203,6 +203,15 @@ typedef struct {
|
||||
} mess_lc_vfs_mount;
|
||||
_ASSERT_MSG_SIZE(mess_lc_vfs_mount);
|
||||
|
||||
typedef struct {
|
||||
int fd0;
|
||||
int fd1;
|
||||
int flags;
|
||||
|
||||
uint8_t padding[44];
|
||||
} mess_lc_vfs_pipe2;
|
||||
_ASSERT_MSG_SIZE(mess_lc_vfs_pipe2);
|
||||
|
||||
typedef struct {
|
||||
uint32_t nfds;
|
||||
fd_set *readfds;
|
||||
@@ -729,6 +738,7 @@ typedef struct {
|
||||
mess_lc_vfs_ioctl m_lc_vfs_ioctl;
|
||||
mess_lc_vfs_lseek m_lc_vfs_lseek;
|
||||
mess_lc_vfs_mount m_lc_vfs_mount;
|
||||
mess_lc_vfs_pipe2 m_lc_vfs_pipe2;
|
||||
mess_lc_vfs_select m_lc_vfs_select;
|
||||
mess_lc_vfs_statvfs1 m_lc_vfs_statvfs1;
|
||||
mess_lc_vfs_truncate m_lc_vfs_truncate;
|
||||
|
||||
Reference in New Issue
Block a user