Bug 811333 Signaling - Fix size of thread ID for Windows build r=jesup

This commit is contained in:
Ethan Hugg 2012-11-13 09:23:04 -08:00
Родитель ae8a9e55c1
Коммит bb4830f48c
2 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -18,13 +18,6 @@
#define PHONE_IPC_MSG 1 #define PHONE_IPC_MSG 1
/* Message buffer layout */
struct msgbuffer {
int32_t mtype; /* Message type */
void *msgPtr; /* Ptr to msg */
void *usrPtr; /* Ptr to user data */
};
/* For gathering statistics regarding message queues */ /* For gathering statistics regarding message queues */
typedef struct { typedef struct {
char name[16]; char name[16];

Просмотреть файл

@ -27,7 +27,7 @@ typedef void *cprThread_t;
*/ */
typedef struct { typedef struct {
const char *name; const char *name;
uint16_t threadId; uint32_t threadId;
union { union {
void *handlePtr; void *handlePtr;
uint64_t handleInt; uint64_t handleInt;