diff options
author | Vinson Lee <[email protected]> | 2014-10-10 22:40:21 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2014-10-13 23:40:46 -0700 |
commit | a2fd55cfb65d3933c27ed6c2259966a98acc55eb (patch) | |
tree | 12c7cda2de9dd9f12a50aa68eb2ed91bd62b6739 /src/gallium/auxiliary/os | |
parent | 291be28476ea60c6fb1eb2a882e2e25def5d3735 (diff) |
auxilary/os: Add DragonFly BSD support in os_get_total_physical_memory.
This patch fixes this build error on DragonFly BSD.
CC os/os_misc.lo
os/os_misc.c: In function 'os_get_total_physical_memory':
os/os_misc.c:132:2: error: #error Unsupported *BSD
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r-- | src/gallium/auxiliary/os/os_misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/os/os_misc.c b/src/gallium/auxiliary/os/os_misc.c index 4c5a22d0ef8..ebf033c99de 100644 --- a/src/gallium/auxiliary/os/os_misc.c +++ b/src/gallium/auxiliary/os/os_misc.c @@ -128,6 +128,8 @@ os_get_total_physical_memory(uint64_t *size) mib[1] = HW_PHYSMEM64; #elif defined(PIPE_OS_FREEBSD) mib[1] = HW_REALMEM; +#elif defined(PIPE_OS_DRAGONFLY) + mib[1] = HW_PHYSMEM; #else #error Unsupported *BSD #endif |