Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jul 2009 18:33:52 GMT
From:      Monty Hall <monty_hall@rastar.merseine.nu>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   misc/136386: Can the following bluez macros be added to bluetooth.h
Message-ID:  <200907061833.n66IXqYQ076524@www.freebsd.org>
Resent-Message-ID: <200907061840.n66Ie1Ue059187@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         136386
>Category:       misc
>Synopsis:       Can the following bluez macros be added to bluetooth.h
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jul 06 18:40:00 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Monty Hall
>Release:        7.2
>Organization:
>Environment:
FreeBSD XXX 7.2-STABLE FreeBSD 7.2-STABLE #2: Mon Jun  8 19:06:28 EDT 2009     root@YYY:/usr/obj/usr/src/sys/GENERIC  i386

>Description:
I'm porting some linux bluetooth software and have run into the macros, show below, several times.  Currently a few bluez macros are in bluetooth.h. I was wondering if the following can be added as well.
>How-To-Repeat:

>Fix:
bluetooth.h

/* Byte order conversions */
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define htobs(d)  (d)
#define htobl(d)  (d)
#define btohs(d)  (d)
#define btohl(d)  (d)
#elif __BYTE_ORDER == __BIG_ENDIAN
#define htobs(d)  bswap_16(d)
#define htobl(d)  bswap_32(d)
#define btohs(d)  bswap_16(d)
#define btohl(d)  bswap_32(d)
#else
#error "Unknown byte order"
#endif

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200907061833.n66IXqYQ076524>