mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-23 09:40:54 +08:00
(_objc_thread_id): Correct return type from int to _objc_thread_id.
From-SVN: r11821
This commit is contained in:
parent
9dd11dcb09
commit
8b7bf67189
@ -164,12 +164,12 @@ objc_thread_exit(void)
|
||||
* Returns an integer value which uniquely describes a thread. Must not be
|
||||
* -1 which is reserved as a marker for "no thread".
|
||||
*/
|
||||
int
|
||||
_objc_thread_t
|
||||
objc_thread_id(void)
|
||||
{
|
||||
pthread_t self = pthread_self();
|
||||
|
||||
return *(int *)&self; /* Return thread handle. */
|
||||
return (_objc_thread_t) self; /* Return thread handle. */
|
||||
}
|
||||
|
||||
/********
|
||||
|
Loading…
x
Reference in New Issue
Block a user