summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Nelson <sam.nelson@ti.com>2015-12-09 07:49:06 -0500
committerAngela Stegmaier <angelabaker@ti.com>2015-12-09 12:57:28 -0600
commit7370abce2e3f2a09fd4b057fbbf9e7d3d029c0df (patch)
tree52a6c10c962f0131d71571e0814b3a34b7eeeeb4
parent795af8b9cec28bd6cdd1f00df1b9084b2a285cce (diff)
downloadipc-3.41-next.tar.gz
Std.h: Remove unused types in Std.h files3.41.00.083.41.00.07_engipc-3.41-next3.41
- These types are no longer used in IPC - Moving forward the idea is to move to using standard C99 types instead of defining types here in this local file. - This also fixes issues with Int8, where other components defining the same changed it to use int8_t which is defined a signed char Signed-off-by: Sam Nelson <sam.nelson@ti.com>
-rw-r--r--linux/include/ti/ipc/Std.h10
-rw-r--r--qnx/include/ti/ipc/Std.h10
2 files changed, 0 insertions, 20 deletions
diff --git a/linux/include/ti/ipc/Std.h b/linux/include/ti/ipc/Std.h
index b1db7fb..cdc8cb1 100644
--- a/linux/include/ti/ipc/Std.h
+++ b/linux/include/ti/ipc/Std.h
@@ -53,15 +53,11 @@ extern "C" {
typedef char Char;
typedef unsigned char UChar;
-typedef short Short;
typedef unsigned short UShort;
typedef int Int;
typedef unsigned int UInt;
typedef long Long;
typedef unsigned long ULong;
-typedef float Float;
-typedef double Double;
-typedef long double LDouble;
#define Void void
@@ -73,7 +69,6 @@ typedef char * String; /* null terminated string */
typedef int * IArg;
typedef unsigned int * UArg;
-typedef char Int8;
typedef short Int16;
typedef int Int32;
@@ -81,14 +76,9 @@ typedef unsigned char UInt8;
typedef unsigned short UInt16;
typedef unsigned int UInt32;
typedef unsigned int SizeT;
-typedef unsigned char Bits8;
typedef unsigned short Bits16;
typedef UInt32 Bits32;
-/* taken from bridge */
-typedef void *PVOID; /* p */
-typedef PVOID HANDLE; /* h */
-
#define TRUE 1
#define FALSE 0
#define FAIL -1
diff --git a/qnx/include/ti/ipc/Std.h b/qnx/include/ti/ipc/Std.h
index c848d2a..499284a 100644
--- a/qnx/include/ti/ipc/Std.h
+++ b/qnx/include/ti/ipc/Std.h
@@ -50,15 +50,11 @@ extern "C" {
typedef char Char;
typedef unsigned char UChar;
-typedef short Short;
typedef unsigned short UShort;
typedef int Int;
typedef unsigned int UInt;
typedef long Long;
typedef unsigned long ULong;
-typedef float Float;
-typedef double Double;
-typedef long double LDouble;
typedef void Void;
@@ -70,7 +66,6 @@ typedef char * String; /* null terminated string */
typedef int * IArg;
typedef unsigned int * UArg;
-typedef char Int8;
typedef short Int16;
typedef int Int32;
@@ -78,14 +73,9 @@ typedef unsigned char UInt8;
typedef unsigned short UInt16;
typedef unsigned int UInt32;
typedef unsigned int SizeT;
-typedef unsigned char Bits8;
typedef unsigned short Bits16;
typedef UInt32 Bits32;
-/* taken from bridge */
-typedef void *PVOID; /* p */
-typedef PVOID HANDLE; /* h */
-
#define TRUE 1
#define FALSE 0
#define FAIL -1