mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-22 11:50:36 +02:00
util/os_misc: Add check for PIPE_OS_HURD
Fix build on Hurd. Signed-off-by: Timo Aaltonen <tjaalton@debian.org> Acked-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
2fff5966d6
commit
738626daca
1 changed files with 2 additions and 2 deletions
|
|
@ -47,7 +47,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_CYGWIN) || defined(PIPE_OS_SOLARIS)
|
||||
#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_CYGWIN) || defined(PIPE_OS_SOLARIS) || defined(PIPE_OS_HURD)
|
||||
# include <unistd.h>
|
||||
#elif defined(PIPE_OS_APPLE) || defined(PIPE_OS_BSD)
|
||||
# include <sys/sysctl.h>
|
||||
|
|
@ -124,7 +124,7 @@ os_get_option(const char *name)
|
|||
bool
|
||||
os_get_total_physical_memory(uint64_t *size)
|
||||
{
|
||||
#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_CYGWIN) || defined(PIPE_OS_SOLARIS)
|
||||
#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_CYGWIN) || defined(PIPE_OS_SOLARIS) || defined(PIPE_OS_HURD)
|
||||
const long phys_pages = sysconf(_SC_PHYS_PAGES);
|
||||
const long page_size = sysconf(_SC_PAGE_SIZE);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue