From: Jeffrey Altman Date: Tue, 27 Dec 2011 01:55:22 +0000 (-0500) Subject: Windows: osi_sleepInfo tid type X-Git-Tag: upstream/1.8.0_pre1^2~2891 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4c2190784f1d4bb613cc140b8d189f0ab4ae10fc;p=packages%2Fo%2Fopenafs.git 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 --- 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 */