Can you help me to understand why the compiler is giving me those error messages? I believe members of volatile objects are volatile too. I'm referring from here. But it shows up that if we have a structure:
struct someStruct
{
int d;
};
And 'p' is a defined like:
volatile someStruct* volatile* p;
&(*p)->d
have the following type 'int* volatile*' instead of 'volatile int* volatile*'. Below is the actual code on which I'm working on.
The lines (marked with error 1 & 2) is where the compiler throws an error messages:
#include <vector>
#include <windows.h>
using namespace std;
struct ThreadInfo
{
bool bWaiting = false;
bool bWorking = false;
};
struct lThreadInfo
{
ThreadInfo d;
lThreadInfo *pNextList = nullptr;
} volatile *volatile lThreads(nullptr);
thread_local ThreadInfo* currentThr(nullptr);
void CreateThread_(void (*pFunc)(ThreadInfo*))
{
volatile lThreadInfo* volatile* p = &lThreads;
for(; *p; p = &(*p)->pNextList); //**//error 1!**
*p = new lThreadInfo;
CreateThread(
nullptr, // default security attributes
0, // use default stack size
(long unsigned int (*)(void*))pFunc, // thread function name
&(*p)->d, // argument to thread function **//error 2!**
0, // use default creation flags
nullptr);
}
The errors messages are the following:
error 1: invalid conversion from 'lThreadInfo* volatile*' to 'volatile lThreadInfo* volatile*' [-fpermissive]
error 2: invalid conversion from 'volatile void*' to 'LPVOID {aka void*}' [-fpermissive]
Note: I know that volatile have nothing to do with thread-safety, so don't bother telling me so. Note1: I'm using mingw64 compiler on windows.
pNextList
, through avolatile
access-path, isvolatile
too. ButpNextList
is the pointer. The pointee type has the same cv-qualification as before.That is, for
*p
is an lvalue of typesomeStruct volatile* volatile
(*p)->d
is an lvalue of typelThreadInfo* volatile
.So in the type of
(*p)->d
you're missing the volatile betweenlThreadInfo
and*
. [expr.ref]/4:vq1 is
volatile
and vq2 is empty. Thus vq12 isvolatile
. Thus the type of the expression isvolatile T
, which islThreadInfo* volatile
.