diff options
author | Josh Blum <josh@joshknows.com> | 2011-12-30 23:27:33 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-12-30 23:27:33 -0800 |
commit | 6795022a23ac0f25183f3044aeba7cd549f50a67 (patch) | |
tree | 0d1e14cad88c6808973c0e3fdb2a24d52dd16022 /host/include | |
parent | d9b4ab389c6a6aede94222fad233288676b22723 (diff) | |
download | uhd-6795022a23ac0f25183f3044aeba7cd549f50a67.tar.gz uhd-6795022a23ac0f25183f3044aeba7cd549f50a67.tar.bz2 uhd-6795022a23ac0f25183f3044aeba7cd549f50a67.zip |
uhd: fixes that make uhd compile on freebsd
Fixes gcc version check in byteswap.
Fixes typo in thread prio.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/utils/byteswap.ipp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/utils/byteswap.ipp b/host/include/uhd/utils/byteswap.ipp index 51e9c28a0..5b2a7252f 100644 --- a/host/include/uhd/utils/byteswap.ipp +++ b/host/include/uhd/utils/byteswap.ipp @@ -36,7 +36,7 @@ return _byteswap_uint64(x); } -#elif defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 2 +#elif defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 3 UHD_INLINE boost::uint16_t uhd::byteswap(boost::uint16_t x){ return (x>>8) | (x<<8); //DNE return __builtin_bswap16(x); |