yurivict opened a new issue, #2071:
URL: https://github.com/apache/incubator-brpc/issues/2071
**Describe the bug (描述bug)**
```
/usr/ports/devel/brpc/work/incubator-brpc-1.3.0/src/butil/compat.h:85:12:
error: cannot initialize return object of type 'uint64_t' (aka 'unsigned long')
with an rvalue of type 'pthread_t' (aka 'pthread *')
return pthread_self();
^~~~~~~~~~~~~~
2 errors generated.
``
**To Reproduce (复现方法)**
build on FreeBSD
According to the documentation pthread_self returns pthread_t:
```
NAME
pthread_self – get the calling thread's ID
LIBRARY
POSIX Threads Library (libpthread, -lpthread)
SYNOPSIS
#include <pthread.h>
pthread_t
pthread_self(void);
```
pthread_t generally can not and should not be typecast to any other type.
**Versions (各种版本)**
OS: FreeBSD 13.1
Compiler: clang-14
brpc: 1.3.0
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]