|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [mini-os master] mman: correct m{,un}lock() definitions
commit 8b038c7411ae7e823eaf6d15d5efbe037a07197a
Author: Charles Arnold <carnold@xxxxxxxx>
AuthorDate: Tue Jun 25 09:50:11 2024 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue Jun 25 09:50:11 2024 +0200
mman: correct m{,un}lock() definitions
gcc14 no longer (silently) accepts functions with no return type
specified.
Signed-off-by: Charles Arnold <carnold@xxxxxxxx>
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Reviewed-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx>
---
include/posix/sys/mman.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/posix/sys/mman.h b/include/posix/sys/mman.h
index 4d34979..69bba45 100644
--- a/include/posix/sys/mman.h
+++ b/include/posix/sys/mman.h
@@ -16,7 +16,7 @@
void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t
offset) asm("mmap64");
int munmap(void *start, size_t length);
-static inline mlock(const void *addr, size_t len) { return 0; }
-static inline munlock(const void *addr, size_t len) { return 0; }
+static inline int mlock(const void *addr, size_t len) { return 0; }
+static inline int munlock(const void *addr, size_t len) { return 0; }
#endif /* _POSIX_SYS_MMAN_H */
--
generated by git-patchbot for /home/xen/git/mini-os.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |