Skip to content

Commit

Permalink
bsd-user: Implement struct target_ipc_perm
Browse files Browse the repository at this point in the history
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Message-Id: <20230925182709.4834-2-kariem.taha2.7@gmail.com>
  • Loading branch information
staceyson authored and bsdimp committed Oct 3, 2023
1 parent 6756ae2 commit 61a8f11
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions bsd-user/syscall_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,23 @@ struct target_iovec {
abi_long iov_len; /* Number of bytes */
};

/*
* sys/ipc.h
*/
struct target_ipc_perm {
uint32_t cuid; /* creator user id */
uint32_t cgid; /* creator group id */
uint32_t uid; /* user id */
uint32_t gid; /* group id */
uint16_t mode; /* r/w permission */
uint16_t seq; /* sequence # */
abi_long key; /* user specified msg/sem/shm key */
};

#define TARGET_IPC_RMID 0 /* remove identifier */
#define TARGET_IPC_SET 1 /* set options */
#define TARGET_IPC_STAT 2 /* get options */

/*
* sys/mman.h
*/
Expand Down

0 comments on commit 61a8f11

Please sign in to comment.