From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:42281) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqPNj-00058p-Na for qemu-devel@nongnu.org; Mon, 08 Aug 2011 08:56:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QqPNi-0008EA-Kk for qemu-devel@nongnu.org; Mon, 08 Aug 2011 08:56:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8032) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QqPNi-0008E6-Cg for qemu-devel@nongnu.org; Mon, 08 Aug 2011 08:56:34 -0400 From: Avi Kivity Date: Mon, 8 Aug 2011 15:56:30 +0300 Message-Id: <1312808190-31074-1-git-send-email-avi@redhat.com> Subject: [Qemu-devel] [PATCH] Introduce short names for fixed width integer types List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kvm@vger.kernel.org QEMU deals with a lot of fixed width integer types; their names (uint64_t etc) are clumsy to use and take up a lot of space. Following Linux, introduce shorter names, for example U64 for uint64_t. Signed-off-by: Avi Kivity --- qemu-common.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/qemu-common.h b/qemu-common.h index 0fdecf1..52a2300 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -112,6 +112,15 @@ static inline char *realpath(const char *path, char *resolved_path) int qemu_main(int argc, char **argv, char **envp); #endif +typedef int8_t S8; +typedef uint8_t U8; +typedef int16_t S16; +typedef uint16_t U16; +typedef int32_t S32; +typedef uint32_t U32; +typedef int64_t S64; +typedef uint64_t U64; + /* bottom halves */ typedef void QEMUBHFunc(void *opaque); -- 1.7.5.3