Committing in .
Modified Files: wxWindows/include/wx/thread.h wxWindows/src/unix/threadpsx.cpp Changed for OPenVMS only problem: The compiler complained about the fact that some pointer were assigned to a smaller integer. Maybe this problems also holds for other 64-bit OS's ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -368,8 +368,12 @@ public:
|
||||
|
||||
// Get the thread ID - a platform dependent number which uniquely
|
||||
// identifies a thread inside a process
|
||||
unsigned long GetId() const;
|
||||
|
||||
#ifdef __VMS
|
||||
unsigned long long GetId() const;
|
||||
#else
|
||||
unsigned long GetId() const;
|
||||
#endif
|
||||
|
||||
// called when the thread exits - in the context of this thread
|
||||
//
|
||||
// NB: this function will not be called if the thread is Kill()ed
|
||||
|
Reference in New Issue
Block a user