diff options
| author | Elizabeth Figura <zfigura@codeweavers.com> | 2024-12-13 13:34:43 -0600 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-01-08 13:18:10 +0100 |
| commit | 5ec43d6b0328a2383525a2b90306c9077480e0bf (patch) | |
| tree | 5229a956e074ddc4299d61a136934c1197e8281c /include/uapi | |
| parent | ntsync: Return the fd from NTSYNC_IOC_CREATE_SEM. (diff) | |
| download | linux-5ec43d6b0328a2383525a2b90306c9077480e0bf.tar.gz linux-5ec43d6b0328a2383525a2b90306c9077480e0bf.zip | |
ntsync: Rename NTSYNC_IOC_SEM_POST to NTSYNC_IOC_SEM_RELEASE.
Use the more common "release" terminology, which is also the term used by NT,
instead of "post" (which is used by POSIX).
Signed-off-by: Elizabeth Figura <zfigura@codeweavers.com>
Link: https://lore.kernel.org/r/20241213193511.457338-3-zfigura@codeweavers.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/ntsync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/ntsync.h b/include/uapi/linux/ntsync.h index 27d8cb3dd5b7..9af9d8125553 100644 --- a/include/uapi/linux/ntsync.h +++ b/include/uapi/linux/ntsync.h @@ -17,6 +17,6 @@ struct ntsync_sem_args { #define NTSYNC_IOC_CREATE_SEM _IOW ('N', 0x80, struct ntsync_sem_args) -#define NTSYNC_IOC_SEM_POST _IOWR('N', 0x81, __u32) +#define NTSYNC_IOC_SEM_RELEASE _IOWR('N', 0x81, __u32) #endif |
