https://github.com/python/cpython/commit/ae968d10326165b1114568ab1ca0a7776ea9c234
commit: ae968d10326165b1114568ab1ca0a7776ea9c234
branch: main
author: Jakub KulĂk <[email protected]>
committer: DinoV <[email protected]>
date: 2024-01-08T15:49:33-08:00
summary:
gh-112806: Remove unused function warnings during mimalloc build on Solaris
(#112807)
files:
M Objects/mimalloc/prim/unix/prim.c
diff --git a/Objects/mimalloc/prim/unix/prim.c
b/Objects/mimalloc/prim/unix/prim.c
index 2152017e01fb43..bf324e3f626679 100644
--- a/Objects/mimalloc/prim/unix/prim.c
+++ b/Objects/mimalloc/prim/unix/prim.c
@@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found
in the file
#include <sys/sysctl.h>
#endif
-#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) &&
!defined(_AIX) && !defined(__FreeBSD__)
+#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) &&
!defined(_AIX) && !defined(__FreeBSD__) && !defined(__sun)
#define MI_HAS_SYSCALL_H
#include <sys/syscall.h>
#endif
@@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) {
return syscall(SYS_access,fpath,mode);
}
-#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__FreeBSD__) // avoid
unused warnings
+#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__FreeBSD__) &&
!defined(__sun) // avoid unused warnings
static int mi_prim_open(const char* fpath, int open_flags) {
return open(fpath,open_flags);
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]