mirror of
https://github.com/boostorg/interprocess.git
synced 2026-07-21 13:23:40 +00:00
AIX build fix: Fix return type in get_invalid_systemwide_thread_id (Merge pull request #280 from tkoecker-dt/aix-build-fix)
This commit is contained in:
@@ -372,7 +372,7 @@ inline OS_systemwide_thread_id_t get_current_systemwide_thread_id()
|
||||
{ return thread_self(); }
|
||||
|
||||
inline OS_systemwide_thread_id_t get_invalid_systemwide_thread_id()
|
||||
{ return (thread_t)(-1); }
|
||||
{ return (tid_t)(-1); }
|
||||
|
||||
#elif defined(__CYGWIN__) && !defined(BOOST_INTERPROCESS_USE_PTHREAD_AS_SYSTEMWIDE_THREAD_ID)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user