From 4c2190784f1d4bb613cc140b8d189f0ab4ae10fc Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Mon, 26 Dec 2011 20:55:22 -0500 Subject: [PATCH] Windows: osi_sleepInfo tid type The thread id type is DWORD not size_t for consistency with the rest of the client_osi package. Change-Id: I2e2d31d8738d9de82d99f346f5109de133f3e25e Reviewed-on: http://gerrit.openafs.org/6436 Tested-by: BuildBot Tested-by: Jeffrey Altman Reviewed-by: Jeffrey Altman --- src/WINNT/client_osi/osisleep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WINNT/client_osi/osisleep.h b/src/WINNT/client_osi/osisleep.h index b833d26da..4e3275f51 100644 --- a/src/WINNT/client_osi/osisleep.h +++ b/src/WINNT/client_osi/osisleep.h @@ -28,7 +28,7 @@ typedef struct osi_sleepInfo { osi_queue_t q; LONG_PTR value; /* sleep value when in a sleep queue, patch addr for turnstiles */ DWORD *tidp; /* tid history */ - size_t tid; /* thread ID of sleeper */ + DWORD tid; /* thread ID of sleeper */ EVENT_HANDLE sema; /* semaphore for this entry */ unsigned short states; /* states bits */ unsigned short idx; /* sleep hash table we're in, if in hash */ -- 2.39.5